14.test
来自「uClinux下用的数据库」· TEST 代码 · 共 19 行
TEST
19 行
## Test the use of resorved words as idents#create table table(int int, char char(5), index uint)\p\gcreate table unique(key int, date date)\p\gcreate table updates(update text(10), update_time time)\p\ginsert into unique values (1, '1-Jan-1001')\p\ginsert into unique values (2, '2-Feb-2002')\p\gselect * from unique where date > '1-Jan-999' \p\g## Test the new offset clauseselect first_name, last_name from staff order by last_name \p\gselect first_name, last_name from staff order by last_name offset 2\p\gselect first_name, last_name from staff order by last_name limit 1 offset 3 \p\g
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?