How do I find out all databases starting with ‘test‘?
Options
- SHOW DATABASES LIKE ‘%test%’;
- SHOW DATABASES LIKE ‘%test;
- SHOW DATABASES LIKE ‘'test'%’;
- SHOW DATABASES LIKE ‘test%’;
CORRECT ANSWER : SHOW DATABASES LIKE ‘test%’;
Write your comments