?? creat_temp_table.txt
字號:
--建立temp_table表
DROP TABLE temp_table;
CREATE TABLE temp_table (
num_col NUMBER,
char_col VARCHAR2(60)
);
--插入100000條紀錄
declare
v_loop number(10);
begin
for v_loop in 1..100000 loop
insert into temp_table values (v_loop,'a');
end loop;
end;
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -