/ Published in: SQL
Get a list of all the user tables.
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
SELECT TABLE_NAME, comments FROM dictionary WHERE TABLE_NAME LIKE 'user_%' ORDER BY TABLE_NAME;