sql >> Database >  >> RDS >> Mysql

Alle tabellen in een MySQL-database weergeven met PHP?

Hoe kom je aan tafels

1. SHOW TABLES

mysql> USE test;
Database changed
mysql> SHOW TABLES;
+----------------+
| Tables_in_test |
+----------------+
| t1             |
| t2             |
| t3             |
+----------------+
3 rows in set (0.00 sec)

2. SHOW TABLES IN db_name

mysql> SHOW TABLES IN another_db;
+----------------------+
| Tables_in_another_db |
+----------------------+
| t3                   |
| t4                   |
| t5                   |
+----------------------+
3 rows in set (0.00 sec)

3. Informatieschema gebruiken

mysql> SELECT TABLE_NAME
       FROM information_schema.TABLES
       WHERE TABLE_SCHEMA = 'another_db';
+------------+
| TABLE_NAME |
+------------+
| t3         |
| t4         |
| t5         |
+------------+
3 rows in set (0.02 sec)

naar OP

je hebt slechts 1 rij opgehaald. repareren als volgt:

while ( $tables = $result->fetch_array())
{
    echo $tmp[0]."<br>";
}

en ik denk dat information_schema beter zou zijn dan SHOW TABLES

SELECT TABLE_NAME
FROM information_schema.TABLES 
WHERE TABLE_SCHEMA = 'your database name'

while ( $tables = $result->fetch_assoc())
{
    echo $tables['TABLE_NAME']."<br>";
}


  1. Hoe gaat MySQL om met gelijktijdige invoegingen?

  2. SQL Server AlwaysOn-beschikbaarheidsgroepen:installatie en configuratie. Deel 2

  3. Mysql waar id in array staat

  4. Hoe u SQL Server-gebeurtenissen vastlegt en analyseert