欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

【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

mysql

select table_name from information_schema.tables where table_schema='db_name'