sql >> Database >  >> RDS >> Mysql

Hoe kan ik SHOW TABLES repliceren in Hibernate?

Probeer zoiets als dit:

SELECT TABLE_NAME FROM information_schema.TABLES WHERE TABLE_SCHEMA=DATABASE();

Voor kolommen (dezelfde situatie met Hibernate) probeer:

SELECT column_name FROM information_schema.COLUMNS WHERE TABLE_SCHEMA=DATABASE() AND TABLE_NAME=YOUR_TABLE_NAME


  1. Hoe sla je een MySQL-queryresultaat op in een variabele in c

  2. SQLite GLOB

  3. MySQL:SELECTEER van een andere server

  4. Wat is de beste manier om een ​​historische prijslijst op te slaan in een MySQL-tabel?