?? plsql101_script.txt
字號(hào):
EDIT d:\plsql101_test.sql
-- Insert the following commands into the script file
CREATE TABLE plsql101_temp (
first_name VARCHAR2(15),
last_name VARCHAR2(25)
)
;
INSERT INTO plsql101_temp VALUES ('Joe', 'Smith');
INSERT INTO plsql101_temp VALUES ('Jane', 'Miller');
SELECT * FROM plsql101_temp;
DROP TABLE plsql101_temp;
*/
@d:\plsql101_test
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -