當前位置:成語大全網 - 書法字典 - mysql截斷問題select right中的錯誤((顯示類似“% usermeta”)的表,5)。如何截斷表名?

mysql截斷問題select right中的錯誤((顯示類似“% usermeta”)的表,5)。如何截斷表名?

Show tables是壹個管理語句,不能在子語句情況下用作標準sql語句。

您可以直接查看系統的字典表:

select right(table_name,5)from information _ schema . tables其中table _ name like“% user meta”;

# information_schema是系統字典所在的數據庫,其中的tables表記錄了數據庫的所有表。

# desc information _ schema . tables;#有很多妳想知道的信息。