Guest User

Untitled

a guest
Aug 20th, 2018
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. MySQL drop tables where engine is memory
  2. drop * from db1 where engine = memory;
  3.  
  4. select table_name
  5. from information_schema.tables
  6. where table_schema = 'db1' and engine = 'memory';
Add Comment
Please, Sign In to add comment