mysql查詢目前使用者下的所有表名的方法:執行sql語句【select * from sys.objects where type='U' order by name】即可。如果要查看表格結構,可以執行【sp_help t_table】語句。
查看目前登陸使用者下的所有表名
(推薦教學:mysql教學)
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
相關推薦:php訓練
以上是mysql如何查詢目前使用者下的所有表名的詳細內容。更多資訊請關注PHP中文網其他相關文章!