feat: dbms支持多tab查看数据

This commit is contained in:
meilin.huang
2022-01-19 15:10:17 +08:00
parent 33377a08e6
commit 7626c24991
8 changed files with 232 additions and 167 deletions

View File

@@ -291,7 +291,7 @@ const (
// mysql 列信息元数据
MYSQL_COLOUMN_MA = `SELECT table_name tableName, column_name columnName, column_type columnType,
column_comment columnComment, column_key columnKey, extra from information_schema.columns
column_comment columnComment, column_key columnKey, extra, is_nullable nullable from information_schema.columns
WHERE table_name in (%s) AND table_schema = (SELECT database()) ORDER BY ordinal_position limit 18000`
)