PL⼀SQL…创建一个能向学生表student中插入一条记录的存储过程

2024年11月13日 01:30
有3个网友回答
网友(1):

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、再次查看可以看到数据表中这个数据已经存在。

网友(2):

有可能你插入的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;

网友(3):

字段类型不匹配吧?

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;
/