一旗吁、連接本地的數(shù)據(jù)庫并進入命令行:
1比驻、打開終端,輸入如下命令:
/usr/local/MySQL/bin/mysql -u root -p
其中店读,root為數(shù)據(jù)庫用戶名
2、輸入密碼:
界面提示輸入密碼:
Enter password:
若為初次使用該數(shù)據(jù)庫攀芯,則默認密碼為空屯断,直接回車即可進入mysql命令行;
若已設(shè)置密碼侣诺,則輸入密碼后殖演,回車,即可進入mysql命令行年鸳。
二趴久、連接遠程數(shù)據(jù)庫并進入命令行:
假設(shè)遠程主機的IP為:ip地址,用戶名為root,密碼為123456
1搔确、打開終端彼棍,輸入如下命令:
mysql -h ip地址 -u root -p 123456
2、輸入密碼:
界面提示輸入密碼:
Enter password:
若為初次使用該數(shù)據(jù)庫膳算,則默認密碼為空座硕,直接回車即可進入mysql命令行;
若已設(shè)置密碼涕蜂,則輸入密碼后华匾,回車,即可進入mysql命令行机隙。
三蜘拉、退出命令:exit,再回車即可退出mysql命令行有鹿。
四:
1旭旭、創(chuàng)建一個名字為NickYang數(shù)據(jù)庫?create database NickYang character set utf8;
2、修改數(shù)據(jù)庫編碼:alter database NickYang character set utf8;
3葱跋、查看數(shù)據(jù)庫是否創(chuàng)建成功:show databases;
4持寄、進入數(shù)據(jù)庫:use NickYang;
5、創(chuàng)建表并為表分配一個主鍵:create table yang(id int primary key);
6年局、查看表是否創(chuàng)建成功:show tables;
7际看、查看表結(jié)構(gòu):desc 表名;
8、增加字段:alter table 表名 add 字段名 數(shù)據(jù)類型[位置];
alter? table yang add? name varchar(255) after id;
9矢否、刪除字段:alter table 表名 drop 字段名;
alter table yang drop name;
10、新增數(shù)據(jù):insert into 表名(字段名) values(值)
insert into? yang(id,name)? values(1,'name');
11脑溢、刪除數(shù)據(jù):delete from 表名 [where 條件];
delete from yang [where id = 1]
12僵朗、修改數(shù)據(jù):update 表名 set 字段 = 值[where 條件]
update yang set name = 'yang' where id = 1;
13赖欣、查找數(shù)據(jù):select * from 表名 [where 條件];
select * from yang [where id = 1];