1. 程式人生 > >mac下mysql的啟動及連線

mac下mysql的啟動及連線

錯誤:

can't connect to local MySQL server throught socket '/tmp/mysql.sock'(2)

錯誤形式1:

錯誤形式2:

 

解決:

mysql -uroot -h 127.0.0.1 -p

 

 mqsql的語句複習:

建立資料庫:

create database apollo;

使用資料庫:

use apollo;

建立表:

create table product(

id int not null primary key auto_increment;

name varchar(20) not null,

price double not null);

查看錶中的詳細資料:

describe product; 

 表中插入資料:

修改某列的定義:

 alter table product change id id int not null primary key auto_increment;