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

📄 exp.test010.ksh

📁 b树实现源码,linux和unix下运行,速度快,极好用
💻 KSH
字号:
echo Description:BETWEEN and IN test;Statement ExecutedStatement Executed: Rows Affected = 1Statement Executed: Rows Affected = 1Statement Executed: Rows Affected = 1Statement Executed: Rows Affected = 1Statement Executed: Rows Affected = 1Statement Executed: Rows Affected = 1echo  select * from t1 where f1 between 12 and 14;---------------------------------------------------------	f1	f2	f3	---------------------------------------------------------	12	22	12		13	23	13		14	24	14		echo  select * from t1 where f1 not between 12 and 14;---------------------------------------------------------	f1	f2	f3	---------------------------------------------------------	10	20	10		11	21	11		50	50	50		echo  select * from t1 where f3 between 12 and 14;---------------------------------------------------------	f1	f2	f3	---------------------------------------------------------	12	22	12		13	23	13		14	24	14		echo select * from t1 where f1 IN (12, 14, 50);echo select * from t1 where f1 IN (12, 14, 50);echo select * from t1 where f1 IN (12, 14, 50) AND f3 IN (50);echo select * from t1 where f1 IN (12, 14, 50) AND f3 IN (50);echo select * from t1 where f1 IN (12, 14, 50) OR f3 IN (50);echo select * from t1 where f1 IN (12, 14, 50) OR f3 IN (50);echo select * from t1 where f1 IN (12, 14, 50) AND f3 between 12 and 14;echo select * from t1 where f1 IN (12, 14, 50) AND f3 between 12 and 14;echo select * from t1 where f1 NOT IN (12, 14, 50);echo select * from t1 where f1 NOT IN (12, 14, 50);Statement Executed

⌨️ 快捷键说明

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