sql >> Database >  >> RDS >> Mysql

Controleer of de MySQL-tabel bestaat zonder de syntaxis select from te gebruiken?

Als je gelijk wilt hebben, gebruik dan INFORMATION_SCHEMA .

SELECT * 
FROM information_schema.tables
WHERE table_schema = 'yourdb' 
    AND table_name = 'testtable'
LIMIT 1;

Als alternatief kunt u SHOW TABLES . gebruiken

SHOW TABLES LIKE 'yourtable';

Als er een rij in de resultatenset staat, bestaat de tabel.



  1. Beste SQL Recovery Tool voor 2020 om cruciale SQL-database te herstellen

  2. Hoe kan ik meerdere SQL-tabellen samenvoegen met behulp van de ID's?

  3. Prestaties van de COUNT SQL-functie

  4. Hoe te bestellen op maandnaam in SQLite