student.sql

来自「使用ORCLE创建表」· SQL 代码 · 共 21 行

SQL
21
字号
prompt PL/SQL Developer import file
prompt Created on 2005年11月17日 by sc_admin
set feedback off
set define off
prompt Disabling triggers for STUDENT...
alter table STUDENT disable all triggers;
prompt Disabling foreign key constraints for STUDENT...
alter table STUDENT disable constraint DEPTNUMJBER;
prompt Deleting STUDENT...
delete from STUDENT;
commit;
prompt Loading STUDENT...
prompt Table is empty
prompt Enabling foreign key constraints for STUDENT...
alter table STUDENT enable constraint DEPTNUMJBER;
prompt Enabling triggers for STUDENT...
alter table STUDENT enable all triggers;
set feedback on
set define on
prompt Done.

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?