1 | /usr/local/mysql/bin/mysql -uroot -p123456 -S /data/mysql/run/mysql.sock |
1 2 | show databases; create database test; |
1 2 3 | use test create table student(name char(100),age int); show tables; |
1 | insert into student(name,age) values('David',18); |
1 | select * from student; |