📄 ut.3
字号:
/* * ut.3: tests create and help *//* create a simple relation */create table easy (myattr char(24));/* list the directory to see if anything got created */!ls/* see if it shows up in the catalog */help table easy;/* create a larger relation */create table easier (one char(24), two int, three real, four char(100));/* same stuff */!lshelp table easier;help;quit;
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -