SQL 查询 Table 不存在
SQL Query Table doesn't exsist
当我通过 Sequel Pro 编写查询并像这样格式化时 a.TBL_ADJUSTMENT
我收到以下错误 Table 'a.TBL_ADJUSTMENT' doesn't exist
.
我该如何编写才能用 letter/number 标记我的表?
假设您正尝试从 table my_table
中 select 列 my_column
,您要查找的查询是 select a.my_column from my_table as a
您指的是 Table 模式:
select a.Table_name from
(select * from information_schema.`TABLES` a) as a
当我通过 Sequel Pro 编写查询并像这样格式化时 a.TBL_ADJUSTMENT
我收到以下错误 Table 'a.TBL_ADJUSTMENT' doesn't exist
.
我该如何编写才能用 letter/number 标记我的表?
假设您正尝试从 table my_table
中 select 列 my_column
,您要查找的查询是 select a.my_column from my_table as a
您指的是 Table 模式:
select a.Table_name from
(select * from information_schema.`TABLES` a) as a