基本流程
- 連接MySQL
- 選擇數(shù)據(jù)庫
- 執(zhí)行SQL語句
- 退出關(guān)閉
1. 連接mysql
mysql -u root -p
2. 數(shù)據(jù)庫操作
? 2.1 選擇數(shù)據(jù)庫
`use <database name>;`
? 2.2 打印函數(shù)值
? SELECT NOW(),CURDATE(),CURTIME()
3. 常用語句
以下操作衫嵌,均是在mysql命令行下執(zhí)行
執(zhí)行語句前一定先選擇數(shù)據(jù)庫6林妗!楔绞!
3.1 數(shù)據(jù)庫操作
查看數(shù)據(jù)庫編碼格式
show variables like 'character_set_database';
修改默認(rèn)密碼
alter user 'root'@'localhost' identified by 'youpassword';創(chuàng)建數(shù)據(jù)庫
create database <table name>;
查詢數(shù)據(jù)庫里的表象
show tables;
查看當(dāng)前使用的數(shù)據(jù)庫
select database();
導(dǎo)出數(shù)據(jù)庫
mysqldump -uroot -p <database name> > export.sql
輸入數(shù)據(jù)庫登錄密碼即可導(dǎo)入數(shù)據(jù)
#創(chuàng)建數(shù)據(jù)庫
>create database <databases>;
>use <databases> ;
>set names utf8;
>source /Users/export.sql
3.2 表操作
創(chuàng)建表結(jié)構(gòu)
create table t_playerinfo(unique_id varchar(64), uid varchar(64), nick_name varchar(64), avator_url varchar(255), room_card int);
查詢數(shù)據(jù)表
select * from <table name>;
查詢表結(jié)構(gòu)
describe t_palyerinfo;
查詢表內(nèi)容
select * from <table name>;
插入數(shù)據(jù)
insert into <table name>(<seg name>) value ('10000');
全部某個(gè)字段
insert into <table name>(<seg name>) value ('10000');
刪除數(shù)據(jù) (清空表)
DELETE FROM <table name>;
truncate
刪除數(shù)據(jù)表
DROP TABLE <table_name> ;
創(chuàng)建表結(jié)構(gòu)后再設(shè)置主鍵
alter table <table name> add primary key(<colum name>);
創(chuàng)建表結(jié)構(gòu)后再添加字段
alter table <table name> add <colum name> <colum type>;
-
更改表主鍵
describe t_playerinfo; alter table t_playerinfo drop primary key; describe t_playerinfo; alter table t_playerinfo add primary key (unique_id); describe t_playerinfo;
- 為主鍵添加自增屬性
alter table <table name> change <column> <column> int unsigned auto_increment primary key;
- 為主鍵添加自增屬性
操作表之前先使用use
use <table name>;
定時(shí)任務(wù)
? 推薦下面的這篇帖子结闸,寫的很漂亮
? https://jiyiren.github.io/2016/03/27/Mysql_schedule/#comments
補(bǔ)充一下刪除事件
DROP EVENT [IF EXISTS] event_name
Q & A
mysql workbench
今日用MySQL Workbench進(jìn)行數(shù)據(jù)庫的管理更新時(shí),執(zhí)行一個(gè)更新的語句碰到以下錯(cuò)誤提示:
Error Code: 1175 You are using safe update mode and you tried to update a table without a WHERE that uses a KEY column
- 原因
進(jìn)過一番搜索之后發(fā)現(xiàn)原來是MySQL Workbench的安全設(shè)置酒朵。當(dāng)要執(zhí)行的SQL語句是進(jìn)行批量更新或者刪除的時(shí)候就會(huì)提示這個(gè)錯(cuò)誤桦锄。 - 解決方法
打開Workbench的菜單[Edit]->[Preferences...]切換到[SQL Editor]頁面把[Forbid UPDATE and DELETE statements without a WHERE clause (safe updates)]之前的對(duì)勾去掉點(diǎn)擊[OK]按鈕最后一步記得要重啟一下Workbench,否則你仍然會(huì)得到這個(gè)錯(cuò)誤提示耻讽。