-2
mysql>delimiter //
mysql>create procedure add_student
(
in student_id decimal(10),
in name varchar(20),
in course varchar(10),
in address varchar(10),
in bday varchar(15),
in gender varchar(10))
begin
if exists(select *from student_id where student_id=student_id)
select'student alredy exist'
else
select'New student added'
insert into student values(student_id,name,course,address,bday,gender)
endif
end;
//
plzzzヘルプMySQLの手順と同じIDを検出し、新しい学生に
今朝は甘いおしゃべりではありません。 – Drew
plzzzz詳細。 – C4u
何が必要ですか?あなたの質問ではっきりしない。 –