📄 schema.sql
字号:
## create a simple cardfile file# just in case it already exists, drop the table. If it doesn't# exist, this will produce an error...#drop table cardfile\gcreate table cardfile (name char(20), address char(35), city char(20), state char(2), zip char(11), country char(25), phone char(20), id int) \g CREATE UNIQUE INDEX ix_id ON cardfile (id)\g
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -