test2.txt

来自「用C++实现的MINI SQL服务器 支持标准的常用SQL查询语句」· 文本 代码 · 共 13 行

TXT
13
字号
insert into t1 values(1,'Jim',20,2000.00);
insert into t1 values(2,'Kate',24,1800.00);
insert into t1 values(3,'John',34,4000.00);
insert into t1 values(4,'Marry',20,3000.00);
insert into t1 values(5,'Tom',24,1850.00);
insert into t1 values(6,'Queen',28,24000.00);
insert into t1 values(7,'Porry',17,1000.00);
insert into t1 values(8,'Green',24,8000.00);
insert into t1 values(8,'Jim',20,4000.00);
insert into t1 values(9,'Green',22,4000.00);

create index name on t1(name);

⌨️ 快捷键说明

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