-3

在我的数据库中有以下表格:

temp;
2012;
2013;
2014;
2015;

我想列出表格,除了temp 它应该类似于

show tables from database like ...;

我也试过运营商NOT

但我失败了。谁能帮我正确的 SQL 命令?

4

1 回答 1

3
select table_schema
from information_schema.tables
where table_schema <> 'temp'
于 2013-08-04T13:46:45.210 回答