gist.help

来自「一个俄国人写的内存数据库系统」· HELP 代码 · 共 33 行

HELP
33
字号
This is a test program for the Generalized Search Tree (GiST), asdescribed by Hellerstein, Naughton & Pfeffer in Proceedings of the21st 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 fooopen [br]tree foo           Opens an existing b/r table fooclose foo                Closes the table foodrop x                   Drops (deletes) the table fooselect from foo          Selects (displays) all entries in fooselect from foo where key < 9 and key > 4                         Selects and entres in foo that are                         between 4 and 9 exclusivelyinsert foo ("gary", 4)   Inserts a new entry with key "gary", pointer 4                         into table foodelete foo ("gary", 4)   deletes an entry with key "gary", pointer 4                         from table foodebug                    Activate debugging outputhelp                     Display this screenquit                     Quit the program

⌨️ 快捷键说明

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