Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在我的数据库中有以下表格:
temp; 2012; 2013; 2014; 2015;
我想列出表格,除了temp 它应该类似于
temp
show tables from database like ...;
我也试过运营商NOT
NOT
但我失败了。谁能帮我正确的 SQL 命令?
select table_schema from information_schema.tables where table_schema <> 'temp'