溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶(hù)服務(wù)條款》

PHP、MySQL和JavaScript學(xué)習(xí)手冊(cè)筆記(六)

發(fā)布時(shí)間:2020-08-05 18:05:57 來(lái)源:網(wǎng)絡(luò) 閱讀:479 作者:issak 欄目:web開(kāi)發(fā)

第八章
此系列的文章都是圍繞《PHP、MySQL與JavaScript學(xué)習(xí)手冊(cè)》開(kāi)展的,記錄下我自學(xué)的歷程。
PHP、MySQL和JavaScript學(xué)習(xí)手冊(cè)筆記(六)


mysql入門(mén)

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只有的保留字

向AI問(wèn)一下細(xì)節(jié)

免責(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)容。

AI