向書本學(xué)習(xí),還要向?qū)嵺`學(xué)習(xí)、向生活學(xué)習(xí)。消化已有知識(shí),
而且要力求有所發(fā)現(xiàn)、有所發(fā)明、有所創(chuàng)造
2019/3/28 18:38:13
// 啟動(dòng)服務(wù)
mysqld --console
// 停止服務(wù)
mysqladmin -u root shutdown
// 登錄后使用數(shù)據(jù)庫(kù) mysql
mysql -u root -p mysql
mysql -u root -p -h 11.11.11.11 database
// 創(chuàng)建數(shù)據(jù)庫(kù)
create database db_name [default character set=gbk]
// 設(shè)置數(shù)據(jù)庫(kù)默認(rèn)字符集
alter databse db_name default character set gbk
// 更換數(shù)據(jù)庫(kù) use database test after log on
use test
// 創(chuàng)建一個(gè)帶圖像字段的表 create a table mypic to store picture
create table mypic (picid int, picname varchar(20), content blob);
// 顯示表的結(jié)構(gòu) describe table mypic
desc mypic
// 顯示當(dāng)前表的建表語(yǔ)句
show create table table_name
// 更改表類型
alter table table_name engine innodb|myisam|memory
// 插入一條記錄 insert a record
insert into mypic values (1, '第二章', 0x2134545);
// 顯示當(dāng)前用戶 show current user
select user();
// 顯示當(dāng)前用戶密碼 show current password
select password('root');
// 顯示當(dāng)前日期 show current date
select now();
// 更改用戶密碼 change user password
update user set password=password('xxx') where user='root';
// 分配用戶權(quán)限 grant
grant all privileges on *.* to root@localhost
grant select,insert,delete,update,alter,create,drop on lybbs.* to lybbs@"%" identified by "lybbs";
grant select,insert,delete,update,alter,create,drop on lybbs.* to lybbs@localhost identified by "lybbs";
// 在不重啟的情況下刷新用戶權(quán)限 flush privileges
flush privileges
// 向表中增加一個(gè)主鍵 add primary key
alter table mypic add primary key (picid)
// 修改表結(jié)構(gòu)增加一個(gè)新的字段 add a new column userid after picid
alter table mypic add column userid int after picid
// 更改列類型,當(dāng)存儲(chǔ)圖像過大時(shí),使用默認(rèn)blob超不過100k
alter table userpic change image image longblob;
alter table userpic modify image longblob;
// 設(shè)置默認(rèn)字符集為gb2312
mysqld --default-character-set=gb2312
// 顯示詳細(xì)信息,包括字符集編碼
show full columns from userpic;
// 改變表的編碼
ALTER TABLE userpic CHARACTER SET gb2312;
// mysql jdbc連接url 使用中文
jdbc:mysql://localhost/test?useUnicode=true&characterEncoding=gb2312
// 執(zhí)行外部腳本
source <filename>
MySQL是最受歡迎的開源SQL數(shù)據(jù)庫(kù)管理系統(tǒng),由MySQL AB開發(fā)、發(fā)布和支持。MySQL AB是一家基于MySQL開發(fā)人員的商業(yè)公司,是一家使用了一種成功的商業(yè)模式來(lái)結(jié)合開源價(jià)值和方法論的第二代開源公司。MySQL是MySQL AB的注冊(cè)商標(biāo)。
MySQL是一個(gè)快速的、多線程、多用戶和健壯的SQL數(shù)據(jù)庫(kù)服務(wù)器。MySQL服務(wù)器支持關(guān)鍵任務(wù)、重負(fù)載生產(chǎn)系統(tǒng)的使用,也可以將它嵌入到一個(gè)大配置(mass-deployed)的軟件中去。
深圳市南山區(qū)南山街道南海大道西桂廟路北陽(yáng)光華藝大廈1棟4F、4G-04
咨詢電話:136 8237 6272
大客戶咨詢:139 0290 5075
業(yè)務(wù)QQ:195006118
技術(shù)QQ:179981967
客戶案列
新聞資訊
資質(zhì)榮譽(yù)
團(tuán)隊(duì)風(fēng)采
項(xiàng)目進(jìn)度查詢
售前QQ咨詢
QQ溝通 項(xiàng)目QQ溝通