您好,登錄后才能下訂單哦!
第八章
此系列的文章都是圍繞《PHP、MySQL與JavaScript學(xué)習(xí)手冊(cè)》開(kāi)展的,記錄下我自學(xué)的歷程。
1.進(jìn)入mysql管理 mysql -u username -p
2.創(chuàng)建數(shù)據(jù)庫(kù) create database mydb;
3.創(chuàng)建表
create table if not exists `mytable` (
`id` int not null auto_increment,
`name` varchar(40) not null,
primary key(`id`))
engine=InnoDB;
4.插入數(shù)據(jù)
insert into mytable
(name)
values
("myname");
5.刪除數(shù)據(jù)delete from mytable where id=1;
6.改數(shù)據(jù)update ~~from~~ mytable set name="newname" where id=1;
7.查詢(xún)數(shù)據(jù)select name from mytable;
8.增加索引alter table mytable add index(name(4));
//取name前四個(gè)字符
9.FULLTEXT索引alter table mytable add fulltext(name);
10.連表查詢(xún)
select name from mytable
join yourtable on mytable.id=yourtable.id;
可以用inner join ,left join ,right join,as等
11.查詢(xún)語(yǔ)句可以用函數(shù) 邏輯運(yùn)算符
12.主鍵 primary key(
id);
13.注意事項(xiàng)
反引號(hào)為了區(qū)分mysql只有的保留字
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀(guān)點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。