btree.help

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

HELP
35
字号
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 btree foo         Creates and opens a new b-tree named fooopen btree foo           Opens an existing btree fooclose foo                Closes the btree 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 screendump foo                 Dump tree foo to the screen. quit                     Quit the program

⌨️ 快捷键说明

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