- 已关闭**。此问题需要details or clarity。当前不接受答案。
- 想要改进此问题?**添加详细信息并通过editing this post阐明问题。
5小时前关门了。
Improve this question
我创建了一个student表,并尝试使用存储过程将数据插入到该student表中。
帮助我使用存储过程插入数据。
CREATE TABLE students
(
student_id integer not null ,
student_name varchar(100),
student_age integer,
mobile_no varchar(20)
);
CREATE PROCEDURE sp_student
(@student_id int,
@student_name varchar(100),
@student_age varchar(100),
@mobile_no varchar(20))
AS
BEGIN
INSERT INTO students (student_id, student_name, student_age, mobile_no)
VALUES (@student_id, @student_name, @student_age, @mobile_no);
END;
1条答案
按热度按时间w9apscun1#
我假设您在LUW上,请删除
CREATE PROCEDURE ...
语句中的AS
:参见CREATE PROCEDURE (SQL) statement