int-大神在哪里 急急急 基础类的问题

问题描述

大神在哪里 急急急 基础类的问题

create database buyFlowers
go

create table admin --管理员表
(
adminId int not null identity(1000,1),
adminName varchar(40) not null,
adminPass varchar(40) not null,
)

create table users --客户表
(
usersId int not null identity(2000,1),
usersName varchar(40) not null,
usersPass varchar(40) not null,
usersRepass varchar(40) not null,
usersPassQuestion varchar(40),
usersPassReply varchar(40),
usersTrueName varchar(40) not null,
usersAddress varchar(100) not null,
usersPhone varchar(100) not null,
usersE_mail varchar(100) not null,
)

create table sort --产品类别表
(
sortId int not null identity(4000,1),
sortName varchar(40) not null,
)
create table goods --商品表
(
goodsId int not null identity(3000,1),
goodsName varchar(40) not null,
goodsmaterial varchar(200) not null,
goodsPackage varchar(200) not null,
goodsLanguage varchar(200) not null,
goodsPrice float not null,
goodsCent varchar(40) not null,
goodsScope varchar(100) not null,
goodsPlace varchar(100) not null,
goodsHabitus varchar(100) not null,
sortName varchar(40) not null,
constraint pk_goodsId primary key (goodsId),
)

create table produce --厂商表
(
produceId int not null identity(5000,1),
produceName varchar(40) not null,

)
--alter table produce
--drop constraint pk_produce
--drop table produceDetails
create table produceDetails --厂商产品明细表
(
produceId int not null,
produceName varchar(40) not null,
sortId int not null,
goodsId int not null,

)

--drop table orders
--drop table ordersDetails
create table orders --订单表
(

ordersId int not null identity(7000,1),
usersName varchar(40) not null,
ordersPrice varchar(40) not null,
ordersDatetime varchar(40) not null,
constraint pk_ordersId primary key (ordersId),
)

--alter table ordersDetails
--drop constraint fk_ordersId
--alter table orders
--drop constraint pk_ordersId
--drop table ordersDetails

create table ordersDetails --订单明细表
(
ordersId int not null ,
goodsName varchar(40) not null,
goodsPrice varchar(40) not null,
goodsCount int not null,

)

create table leaveLanguage --留言表
(
leaveLanguageId int not null identity(9000,1),
name varchar(40),
qq varchar(40),
email varchar(100),
leaveLanguage varchar(200) not null,
dateTime varchar(40) not null,
)

create table safeLog --安全日志表
(

logId int not null identity(10000,1),
usersId varchar(40) not null,
landingDatetime varchar(40),
exitDatetime varchar(40),
)

--drop table safeLog

create procedure Pro_orders @usersName varchar(40),

@ordersPrice varchar(40), @ordersDatetime varchar(40),@ordersId int output
as
begin
begin transaction
insert orders
values (@usersName,@ordersPrice,@ordersDatetime)
select @ordersId=max(ordersId)
from orders
commit transaction
end

解决方案

大神 帮帮忙啊 我还是个大学生 这是个大作业

解决方案二:

 create procedure pro_orders
 @usersName varchar(40)
 as
 begin
 end;
 或者
 create procedure pro_orders
 (@usersName varchar(40) )
 as
 select * from 表

解决方案三:

在create procedure语句行的前后加上go就可以了
create procedure必须单独成行

时间: 2024-10-31 08:20:56

int-大神在哪里 急急急 基础类的问题的相关文章

java jsch 摩托设备-jsch怎么连接摩托设备?求大神帮忙,急急急。。。

问题描述 jsch怎么连接摩托设备?求大神帮忙,急急急... 因为摩托的设备登入方式是:ssh userName@IP,比其他设备的登入方式多了userName (其他设备的登入方式,如华三:ssh IP),所以在用jsch连接的时候,不知道要从哪里注入userName 这个参数. 官网的例子代码如下: package com.zzl; /* -*-mode:java; c-basic-offset:2; indent-tabs-mode:nil -*- / /* This program en

php-微信公众平台开发如何实现主动私信推送??求大神!!急急急!!!

问题描述 微信公众平台开发如何实现主动私信推送??求大神!!急急急!!! 6C 用PHP做微信公众平台开发怎样可以做到在群发时,向不同的用户推送不同的消息?或者分组推送??? 解决方案 官方文档里面有个接口是发送消息给用户的 解决方案二: 通过认证服务号才有此功能,其他无 模板消息仅用于公众号向用户发送重要的服务通知,只能用于符合其要求的服务场景中,如信用卡刷卡通知,商品购买成功通知等.不支持广告等营销类消息以及其它所有可能对用户造成骚扰的消息.具体模板消息运营规则请读模板消息运营规范 http

verilog hdl求助-FPGA大神求帮忙急急急急急

问题描述 FPGA大神求帮忙急急急急急 用Verilog hdl语言编写一个程序可以让数码管动态显示就是用这个编写一个程序就行, 解决方案 急急急!!!哪位来帮忙啊!!!!!!求大神帮忙完善一个java小游戏,急急急!!!!Java登录验证求解?????急急急!!!十万火急!!! 解决方案二: 楼主用的是七段数码管?硬件连接图呢? 解决方案三: 是编写好Verilog hdl 程序后下载到板子上直接演示的

mysql-mySQL触发器编写,麻烦大神帮忙,急急急

问题描述 mySQL触发器编写,麻烦大神帮忙,急急急 例如一个表user 两个字段id和name,id为主键且自增.现在如果在user表里面插入一个数据,如果插入的name为 张三,那么再在这个表里插入一个name为 李四的记录.请问这个触发器怎么写.是mysql数据库 解决方案 create trigger trigger_变量名 on user for insert as insert into user values('李四'); go --过后在执行你的插入操作,在查询你就会发现数据里面

javascript-js中change问题,求大神指教,急急急。。。。。。

问题描述 js中change问题,求大神指教,急急急...... 扫描条形码获得值,就调用onChange,这麽写哪里出了问题,为什么不行,可是手动输入就可以: <td style="width:auto"><p style="color:#a0560d; font-family:'微软雅黑'; font-size:16px; margin:0; padding-right:10px;">条形码输入: <input type="

java 执行 sql 文件报错 求大神帮忙解决 急急急!!!!

问题描述 java 执行 sql 文件报错 求大神帮忙解决 急急急!!!! sql文件里边的内容 /* Navicat MySQL Data Transfer Source Server : localhost_3306 Source Server Version : 50096 Source Host : localhost:3306 Source Database : cemscenter1 Target Server Type : MYSQL Target Server Version :

VS中的棘手问题,求大神指教,急急急!!

问题描述 无法启动程序c:usersxtdocumentsvisualstudio2013ProjectsConsoleApplication3DebugConsoleApplication3.exe拒绝访问,这是怎么回事,但按control+f5,仍可以运行出结果,但结果不对,之前还好好的,怎么现在一个程序都跑不出来,只要按F5,就弹出这个警告,求大神帮帮我!

opc客户端连接问题,求大神帮忙,急急急!!!

问题描述 Opc.Server[]servers=m_discovery.GetAvailableServers(Specification.COM_DA_20,'XXXXX',null);这样连接服务,报错:无法将类型为"System.__ComObject"的COM对象强制转换为接口类型"OpcRcw.Comn.IOPCServerList2".此操作失败的原因是对IID为"{9DD0B56C-AD9E-43EE-8305-487F3188BF7A}&

c++问题-C++问题,求大神解答,急

问题描述 C++问题,求大神解答,急 #include using namespace std; int main() {int sum=1; for(int sum=1,i=0;i<4;i++,sum++) { for(int j=0;j<i;j++) sum+=1;} cout<<sum<<endl; } 这个答案等于1 #include using namespace std; int main() {int sum=1; for(int i=0;i<4;i