MySQL

From Anthony Pastor Wiki Notes - Verba volant, scripta manent
Revision as of 10:47, 16 April 2015 by Anthoanthop (talk | contribs) (Replaced content with "* List MySQL tables engines for a MYDB database: <syntaxhighlight lang="sql"> SELECT TABLE_NAME, ENGINE FROM information_schema.TABLES where TABLE_SCHEMA = 'MYDB' AND ENG...")
Jump to navigation Jump to search
  • List MySQL tables engines for a MYDB database:
SELECT TABLE_NAME, ENGINE FROM information_schema.TABLES where TABLE_SCHEMA = 'MYDB' AND ENGINE IS NOT NULL ORDER BY ENGINE;