我需要在 VB.NET 上对 MySQL 服务器进行以下查询
SHOW TABLES FROM BaseX
当前返回“Tables_in_BaseX”
但我希望列名是一个特定的词。
有什么办法可以改变吗?
例子:
Tables_in_BaseX <--Column name/title
Clients
Data
Info
Schedule
应该
BaseX Table list <--Column name/title
Clients
Data
Info
Schedule
我试过了
SHOW TABLES FROM BaseX AS 'BaseX Table list';
但没有用
最佳答案
也许你可以使用 information_schema.tables
代替:
select table_name as 'BaseX Table List'
from information_schema.tables t
where t.table_schema = 'BaseX'
关于mysql - 有什么方法可以更改 SHOW TABLES 上的列名?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/17432721/