mirror of
https://gitee.com/dromara/mayfly-go
synced 2025-11-03 07:50:25 +08:00
24 lines
660 B
SQL
24 lines
660 B
SQL
--SQLITE_TABLE_INFO 表详细信息
|
|
select tbl_name as tableName,
|
|
'' as tableComment,
|
|
'' as createTime,
|
|
0 as dataLength,
|
|
0 as indexLength,
|
|
0 as tableRows
|
|
FROM sqlite_master
|
|
WHERE type = 'table'
|
|
and name not like 'sqlite_%'
|
|
{{if .tableNames}}
|
|
and tbl_name in ({{.tableNames}})
|
|
{{end}}
|
|
ORDER BY tbl_name
|
|
---------------------------------------
|
|
--SQLITE_INDEX_INFO 表索引信息
|
|
select name as indexName,
|
|
`sql` as indexSql,
|
|
'normal' as indexType,
|
|
'' as indexComment
|
|
FROM sqlite_master
|
|
WHERE type = 'index'
|
|
and tbl_name = '%s'
|
|
ORDER BY name |