【sql】如何用sql获取数据库中所有表名?
程序员文章站
2024-02-03 11:00:16
sqlserver
use db_name
select name from sysobjects where xtype='u'
go
mysql
select tab...
sqlserver
use db_name select name from sysobjects where xtype='u' go
select table_name from information_schema.tables where table_schema='db_name'
上一篇: 二.超链接、表格、表单及元素分类
下一篇: WebStorm添加px转rem单位插件