PL/SQL…创建一个能向学生表student中插入一条记录的存储过程 20
创建一个能向学生表student中插入一条记录的存储过程insert_student,该过程需要5个参数,分别用来传递学号、姓名、性别、出生日期、班级号。写出调用存储过程...
创建一个能向学生表student中插入一条记录的存储过程insert_student,该过程需要5个参数,分别用来传递学号、姓名、性别、出生日期、班级号。
写出调用存储过程insert_student的SQL语句,向数据表student中插入一个新同学,并提供相应的实参值。
create or replace procedure insert_student(sno student.sno%type,sname student.sname%type,ssex student.ssex%type,sbirthday student.sbirthday%type,classno student.classno%type)
is
begin
insert into student values(sno,sname,ssex,sbirthday,classno);
end;
/
哪里出问题了……== 展开
写出调用存储过程insert_student的SQL语句,向数据表student中插入一个新同学,并提供相应的实参值。
create or replace procedure insert_student(sno student.sno%type,sname student.sname%type,ssex student.ssex%type,sbirthday student.sbirthday%type,classno student.classno%type)
is
begin
insert into student values(sno,sname,ssex,sbirthday,classno);
end;
/
哪里出问题了……== 展开
展开全部
1、首先得登录数据库,并且找到新建查询按钮。
2、点击新建查询按钮,会打开一个sql查询窗口,选择切换当前数据库。
3、在sql窗口中写新建表的sql,如下CREATE TABLE MYBAIDUJYLIST(JY_ID VARCHAR(200) NOT NULL,--唯一标识;JY_BH VARCHAR(200) NOT NULL,--编号。
4、执行之后可写一个查询的sql,看一下这个表的创建效果select * from MYBAIDUJYLIST。
5、在数据库预制一条数据,使用Insert方式插入INSERT INTO MYBAIDUJYLIST (JY_ID,JY_BH,JY_MC,JY_ViewCount,JY_DZCount,JY_TPCount,JY_IFXS,JY_FBTime)。
6、再次查看可以看到数据表中这个数据已经存在。
ZESTRON
2024-09-04 广告
2024-09-04 广告
在Dr. O.K. Wack Chemie GmbH,我们高度重视ZESTRON的表界面分析技术。该技术通过深入研究材料表面与界面的性质,为提升产品质量与可靠性提供了有力支持。ZESTRON的表界面分析不仅涵盖了相变化、化学反应、吸附与解吸...
点击进入详情页
本回答由ZESTRON提供
展开全部
有可能你插入的student表对应值不一样,要在对应表的后面加上对应值,student(),表改了这样
create or replace procedure insert_student(sno student.sno%type,sname student.sname%type,ssex student.ssex%type,sbirthday student.sbirthday%type,classno student.classno%type)
is
begin
insert into student(sno,sname,ssex,sbirthday) values(sno,sname,ssex,sbirthday,classno);
end;
create or replace procedure insert_student(sno student.sno%type,sname student.sname%type,ssex student.ssex%type,sbirthday student.sbirthday%type,classno student.classno%type)
is
begin
insert into student(sno,sname,ssex,sbirthday) values(sno,sname,ssex,sbirthday,classno);
end;
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
字段类型不匹配吧?
create or replace procedure insert_student(p_sno student.sno%type,p_sname student.sname%type,p_ssex student.ssex%type,p_sbirthday student.sbirthday%type,p_classno student.classno%type)
is
begin
insert into student(sno,sname,ssex,sbirthday,classno) values(p_sno,p_sname,p_ssex,p_sbirthday,p_classno);
end;
/
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询