mysql學習筆記(四) 資料庫表的增刪改基本操作

2021-09-27 11:47:04 字數 948 閱讀 6107

dml:增刪改基本

create table student(

id int auto_increment primary key ,

name varchar(10),

*** varchar(10)

);-- 插入資料

insert into student(id,name) values(1,'lilei'); --插入一條資料

insert into student(id,name) values(2,'jack'),(3,'alice'); --插入多條資料

insert into student values(4,'tony','famale'); --按順序依次插入

-- 查詢資料

select * from student;

--刪除整個表,謹慎使用

delete from student

--刪除表指定記錄

delete from student where id=2; --刪除id=2的資料

delete from student where id in(2,4); --刪除id=2和4資料

delete from student where age<16; --刪除age<16的資料

--改id=1資料為name='tony'

updata student set name='tony' where id=1;

--改id=1資料為name='tony' ***="male"

updata student set name='tony',***="male" where id=1;

mysql資料庫學習筆記(四) 屬性

一 通過命令 備份資料 通過cmd mysqldump uroot p密碼 需要備份的資料庫名 備份後的sql指令碼名 還原資料 首先進入mysql環境 建立乙個庫 在庫下還原資料 通過命令 source 備份的資料庫指令碼 二 通過sqlyog 選中需要備份的資料庫 右鍵 備份 匯出 轉儲到sql...

mysql學習筆記(四)資料庫及表的修改和刪除

額外補充 1.查詢檔案中所有資料庫 show databeses 2.進入sql檔案 source 正文 1.刪除資料庫 drop database 資料庫名字 eg drop database test 01 2.重新命名一張表 rename table 檔名 to 重新命名檔名 eg renam...

Mysql學習筆記(四)聊聊資料庫索引

小心情 可直接跳到分割線後 今天心情好些了。一些濃的化不開的壞情緒,也漸漸的在晚上解決掉乙個複雜的邏輯問題後,漸漸消散了。今天中午去吃飯的時候,坤哥漫不經心的說 我這麼多年終於悟出了乙個道理,人年輕的時候不要那麼拼命,都沒有時間做其他事情了 我問什麼其他事情,坤哥看了我一眼,又繼續漫不經心的說,那麼...