idea 代码自动补全快捷键

时间:2025-04-06 13:36:14
sql添加删除主键、外键

Lucky-GG: alter table 表名 add constraint 外键约束名 foreign key(列名) references 引用外键表(列名) 如: alter table Stu_PkFk_Sc add constraint Fk_s foreign key (sno) references Stu_PkFk_S(sno)