Actions

 Language:
 RSS flow:


MySQL basic commands


Display a list of all Databases on the server:

    show databases;

Connect to a Database:

    connect Database_Name;

Display a list of all tables on the Database:

    show tables;

Display all datas on a table:

    select * from Table_Name;

Go Back