기본 명령어


기본 명령어

C:\>mysql -uroot -ppassword Welcome to the MySQL monitor. Commands end with ; or \g.

Your MySQL connection id is 3 to server version: 4.0.21-debug Type 'help;' or '\h' for help. Type '\c' to clear the buffer. mysql> show databases; +----------+ | Database!

| +----------+ | myjsp | | mysql | | project1 | | test | +----------+ 4 rows in set (0.00 sec) mysql> drop database myjsp; Query OK, 0 rows affected (0.01 sec) mysql> create database myjsp; Query OK, 1 row affected (0.00 sec) mysql> use myjsp; ...


#MYSQL #데이타베이스 #업무노트 #웹개발 #프로그래밍

원문링크 : 기본 명령어