Last active
May 24, 2017 14:18
-
-
Save Dillie-O/6ea3a2603776abe5167d12c61b3363f8 to your computer and use it in GitHub Desktop.
[Get List of Tables] Get list of tables in a database #tags: mysql
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| SELECT DISTINCT table_name | |
| FROM information_schema.columns | |
| WHERE table_schema = dbname; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment