SQL高級

建立學生表 --刪除學生表 drop table student;  --建立學生表 create table student( stu_id number(4) constraint pk_student_stu_id primary key,--設置主鍵 stu_name char(10) constraint unique_stu_name unique,--設置惟一約束,名字不能爲空 st
相關文章
相關標籤/搜索