listing26-3.sql

来自「《Beginning Python--From Novice to Profes」· SQL 代码 · 共 7 行

SQL
7
字号
create table messages (    id          integer primary key autoincrement,    subject     text not null,    sender      text not null,    reply_to    int,    text        text not null);

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?