0

在一个查询中查看所有数据库和表的样本的最佳方式是什么?

例如:while (show databases) { foreach database_name (select * from table_name limit 2)};

[Test_DB] Test_DB.one

+---------------+--------------+
| ip            | tstamp       |
+---------------+--------------+
| 192.168.10.10 | 01/13/2013   |
| 192.168.10.11 | 01/14/2013   |
+---------------+--------------+

[Test_DB] Test_DB.two

+----------------+--------------+
| mac            | tstamp       |
+----------------+--------------+
| dead.beef.cake | 01/13/2013   |
| dead.beef.cake | 01/14/2013   |
+----------------+--------------+
4

2 回答 2

0

“select * from [Test_DB] Test_DB.one 内连接 [Test_DB] Test_DB.two 限制 2”试试这个

于 2013-07-30T01:10:39.663 回答
0

如需快速列表,您可以执行以下操作:

SELECT TABLE_SCHEMA AS _db, TABLE_NAME AS _table FROM information_schema.tables

你必须在它周围包裹一些东西才能完成这个SELECT * ... LIMIT 2部分。

于 2013-07-30T01:27:45.007 回答