Answers for "accessing tables from mysql"

SQL
1

how to use a database to see tables mysql

use database_name;
show tables;
describe table_name;
Posted by: Guest on September-07-2021
1

select tables from mysql database

SHOW TABLES from <databasename>;
Posted by: Guest on January-01-2021

Code answers related to "accessing tables from mysql"

Code answers related to "SQL"

Browse Popular Code Answers by Language