九色国产,午夜在线视频,新黄色网址,九九色综合,天天做夜夜做久久做狠狠,天天躁夜夜躁狠狠躁2021a,久久不卡一区二区三区

打開APP
userphoto
未登錄

開通VIP,暢享免費電子書等14項超值服

開通VIP
查看mysql數(shù)據(jù)庫及表編碼格式
查看mysql數(shù)據(jù)庫及表編碼格式
1.查看數(shù)據(jù)庫編碼格式
1
mysql> show variables like 'character_set_database';
2.查看數(shù)據(jù)表的編碼格式
1
mysql> show create table <表名>;
3.創(chuàng)建數(shù)據(jù)庫時指定數(shù)據(jù)庫的字符集
mysql>create database <數(shù)據(jù)庫名> character set utf8;
4.創(chuàng)建數(shù)據(jù)表時指定數(shù)據(jù)表的編碼格式
create table tb_books ( name varchar(45) not null, price double not null, bookCount int not null, author varchar(45) not null ) default charset = utf8;
5.修改數(shù)據(jù)庫的編碼格式
mysql>alter database <數(shù)據(jù)庫名> character set utf8;
6.修改數(shù)據(jù)表格編碼格式
mysql>alter table <表名> character set utf8;
7.修改字段編碼格式
mysql>alter table <表名> change <字段名> <字段名> <類型> character set utf8;mysql>alter table user change username username varchar(20) character set utf8 not null;
8.添加外鍵
mysql>alter table tb_product add constraint fk_1 foreign key(factoryid) references tb_factory(factoryid);mysql>alter table <表名> add constraint <外鍵名> foreign key<字段名> REFERENCES <外表表名><字段名>;
9.刪除外鍵
mysql>alter table tb_people drop foreign key fk_1;mysql>alter table <表名> drop foreign key <外鍵名>;
本站僅提供存儲服務(wù),所有內(nèi)容均由用戶發(fā)布,如發(fā)現(xiàn)有害或侵權(quán)內(nèi)容,請點擊舉報。
打開APP,閱讀全文并永久保存 查看更多類似文章
猜你喜歡
類似文章
數(shù)據(jù)庫 MySQL基礎(chǔ)
`(重音符,accent)這個符號在mysql中的作用
MySQL從入門到入魔(01)
MySQL 常用SQL語句
【MySQL進階學(xué)習(xí)】優(yōu)化索引與分區(qū)表
MySQL數(shù)據(jù)庫基本操作
更多類似文章 >>
生活服務(wù)
熱點新聞
分享 收藏 導(dǎo)長圖 關(guān)注 下載文章
綁定賬號成功
后續(xù)可登錄賬號暢享VIP特權(quán)!
如果VIP功能使用有故障,
可點擊這里聯(lián)系客服!

聯(lián)系客服