csql6.sql

来自「b树实现源码,linux和unix下运行,速度快,极好用」· SQL 代码 · 共 12 行

SQL
12
字号
echo create index  test;create table t1 (f1 integer not null, f2 integer not null,                  f3 int not null, f4 int not null,                 f5 int not null, f6 int not null);create index idx1 on t1 (f1);create index idx2 on t1 (f2) UNIQUE;create index idx3 on t1 (f3) PRIMARY;create index idx4 on t1 (f4) HASH PRIMARY;create index idx5 on t1 (f5) TREE;create index idx6 on t1 (f6) TREE PRIMARY;drop table t1;

⌨️ 快捷键说明

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