a. MySQL Download
sudo apt-cache search mysql-server
b. MySQL install
sudo apt-get install mysql-server
c. Run MySQL
mysql -uroot -p
show databases;
( 전체 DB 확인 )
show tables;
( 선택한 DB의 전체 Table 확인 )
Example
create database SAMPLE;
( SAMPLE DB 추가 )
show databases;
( 전체 DB 확인 )
use DB_SAMPLE;
( SAMPLE DB를 사용 )
show tables;
( SAMPLE DB의 Table 확인 )