這篇文章主要介紹“MySQL數(shù)據(jù)庫的增刪改查命令”,在日常操作中,相信很多人在MySQL數(shù)據(jù)庫的增刪改查命令問題上存在疑惑,小編查閱了各式資料,整理出簡(jiǎn)單好用的操作方法,希望對(duì)大家解答”MySQL數(shù)據(jù)庫的增刪改查命令”的疑惑有所幫助!接下來,請(qǐng)跟著小編一起來學(xué)習(xí)吧!
10年積累的成都網(wǎng)站建設(shè)、網(wǎng)站建設(shè)經(jīng)驗(yàn),可以快速應(yīng)對(duì)客戶對(duì)網(wǎng)站的新想法和需求。提供各種問題對(duì)應(yīng)的解決方案。讓選擇我們的客戶得到更好、更有力的網(wǎng)絡(luò)服務(wù)。我雖然不認(rèn)識(shí)你,你也不認(rèn)識(shí)我。但先網(wǎng)站制作后付款的網(wǎng)站建設(shè)流程,更有四子王免費(fèi)網(wǎng)站建設(shè)讓你可以放心的選擇與我們合作。創(chuàng)建數(shù)據(jù)庫
CREATE DATABASE database_name
創(chuàng)建表
CREATE TABLE `user` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID', PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
刪除表
DROP TABLE IF EXISTS `user`;
添加字段:
"ALTER TABLE `user` ADD `id` int(11) NOT NULL DEFAULT '0' COMMENT 'ID'" ALTER TABLE `user` ADD `name` VARCHAR( 20 ) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '姓名'
刪除字段
ALTER TABLE `user` DROP column name
重命名
ALTER TABLE table_name CHANGE old_field_name new_field_name field_type;
修改類型
alter table t1 change b b bigint not null; alter table infos change list list tinyint not null default '0';
加索引
alter table t1 rename t2; mysql> alter table tablename change depno depno int(5) not null; mysql> alter table tablename add index 索引名 (字段名1[,字段名2 …]); mysql> alter table tablename add index emp_name (name);加主關(guān)鍵字的索引 mysql> alter table tablename add primary key(id);加限制條件的索引 mysql> alter table tablename add unique emp_name2(cardnumber);刪除某個(gè)索引 mysql>alter table tablename drop index emp_name;修改表:
Thinkphp3.2中添加字段,如:
M('admin')->execute("ALTER TABLE `admin` ADD `id` int(11) NOT NULL DEFAULT '0' COMMENT 'ID'"); M('admin')->execute("ALTER TABLE `admin` ADD `name` varchar(20) DEFAULT NULL COMMENT '姓名'");
到此,關(guān)于“MySQL數(shù)據(jù)庫的增刪改查命令”的學(xué)習(xí)就結(jié)束了,希望能夠解決大家的疑惑。理論與實(shí)踐的搭配能更好的幫助大家學(xué)習(xí),快去試試吧!若想繼續(xù)學(xué)習(xí)更多相關(guān)知識(shí),請(qǐng)繼續(xù)關(guān)注創(chuàng)新互聯(lián)網(wǎng)站,小編會(huì)繼續(xù)努力為大家?guī)砀鄬?shí)用的文章!