Answers for "mysql print database"

SQL
0

print mysql

SELECT 'some text' as '';

Example:

mysql>SELECT 'some text' as '';
+-----------+
|           |
+-----------+
| some text |
+-----------+
1 row in set (0.00 sec)
Posted by: Guest on April-15-2021
0

mysql show create db

SHOW CREATE {DATABASE | SCHEMA} [IF NOT EXISTS] db_name

If the SHOW statement includes an IF NOT EXISTS clause, the output 
too includes such a clause. SHOW CREATE SCHEMA is a synonym for
SHOW CREATE DATABASE.
Posted by: Guest on May-19-2020

Code answers related to "SQL"

Browse Popular Code Answers by Language