⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 test3.txt

📁 用C++实现的MINI SQL服务器 支持标准的常用SQL查询语句
💻 TXT
字号:
select * from t1;

select * from t1 where id>6;
select * from t1 where id<3;
select * from t1 where id>=6;
select * from t1 where id<=3;
select * from t1 where id=6;
select * from t1 where id<>6;

select * from t1 where name='Jim';
select * from t1 where name<>'Jim';
select * from t1 where name>='Queen';
select * from t1 where name<='Jim';

select * from t1 where salary<1850.00;
select * from t1 where salary>=4000.00;
select * from t1 where salary=3000.00;
select * from t1 where salary<>3000.00;

⌨️ 快捷键说明

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