datadict_show_table_design.inc
来自「视频监控网络部分的协议ddns,的模块的实现代码,请大家大胆指正.」· INC 代码 · 共 29 行
INC
29 行
#### suite/funcs_1/datadict/datadict_show_table_design.test## - shows design of *one* table from INFORMATION_SCHEMA# - used to have identical 'view' on all tested tables## Usage:## let $is_table= <name of one of the tables>;# --source suite/funcs_1/datadict/datadict_show_table_design.testUSE information_schema;--source suite/funcs_1/datadict/datadict_bug_12777.inceval DESC $is_table;--source suite/funcs_1/datadict/datadict_bug_12777.inceval SHOW CREATE TABLE $is_table;eval SELECT COUNT(*) FROM information_schema.columnsWHERE table_schema = 'information_schema' AND table_name = '$is_table'ORDER BY ordinal_position;--source suite/funcs_1/datadict/datadict_bug_12777.inceval SELECT * FROM information_schema.columnsWHERE table_schema = 'information_schema' AND table_name = '$is_table'ORDER BY ordinal_position;
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?