?? create_table.sql
字號(hào):
create table question( question_id number(12) not null, content varchar2(300) not null, correct_choice number(6) not null, primary key (question_id));create table answer( question_id number(12) not null, choice number(6) not null, content varchar2(100) not null, primary key (question_id,choice));create sequence question_seq start with 1 increment by 1 nocycle nomaxvalue;
?? 快捷鍵說(shuō)明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -