gist.help
来自「FastDb是高效的内存数据库系统」· HELP 代码 · 共 33 行
HELP
33 行
This is a test program for the Generalized Search Tree (GiST), as
described by Hellerstein, Naughton & Pfeffer in Proceedings of the
21st International Conference on Very Large Database Systems.
The following commands are understood:
create [br]tree foo Creates and opens a new b/r-tree named foo
open [br]tree foo Opens an existing b/r table foo
close foo Closes the table foo
drop x Drops (deletes) the table foo
select from foo Selects (displays) all entries in foo
select from foo where key < 9 and key > 4
Selects and entres in foo that are
between 4 and 9 exclusively
insert foo ("gary", 4) Inserts a new entry with key "gary", pointer 4
into table foo
delete foo ("gary", 4) deletes an entry with key "gary", pointer 4
from table foo
debug Activate debugging output
help Display this screen
quit Quit the program
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?