mysql如何查詢當前使用者下的所有表名

2020-09-29 18:01:04

mysql查詢當前使用者下的所有表名的方法:執行sql語句【select * from sys.objects where type='U' order by name】即可。如果要檢視表結構,可以執行【sp_help t_table】語句。

檢視當前登陸使用者下的所有表名

(推薦教學:)

select name from sys.objects where type='U' order by name 
select * from sys.objects where type='U' order by name

表結構查詢

sp_help t_table

sp_columns t_table

相關推薦:

以上就是mysql如何查詢當前使用者下的所有表名的詳細內容,更多請關注TW511.COM其它相關文章!