MySql基礎學習 資料操作

2022-03-29 20:42:21 字數 997 閱讀 7292

對於資料的操作,無非是「增刪該查」這幾種操作。

1增加

資料的增加使用insert語句插入

語法:insert into table_name(column1,column2,...)values(value1,value2,...) 

例如:insert into person(name)values('lila');

2刪除

資料的刪除操作,使用delete

語法:delete from table_name where condtion...

例如:delete from person where id='1';

注意:刪除操作一定要帶條件,並且刪除操作一定要慎重,一不小心要背鍋。

3更新

資料的更新操作,使用update

語法:update table_name set column=『value』 where condition

例如:update person set name='xiaoming' where id='1';

更新語句也可進行多值更新

例如:update person set name='xiaoming',age=12 where id='1';

4查詢

資料查詢操作,是使用最為頻繁的操作,使用select

語法:select column1,column2 from table_name[ where condition]

例如:select name from person where id='1'

常用的查詢操作:

1.連線查詢

使用 inner join,left join,right join,out join。

2.多表查詢

兩個表以上的查詢。

3.模糊查詢

一般使用like關鍵字和%

4.巢狀查詢

巢狀查詢一般用於條件過濾性查詢。

MySQL 基礎 資料操作

資料的操作 crud 插入資料記錄 insert into 插入資料 插入完整資料記錄 插入資料記錄一部分 插入多條資料記錄 插入查詢結果。1 插入完整資料記錄 建立表 create table t dept deptno int 11 dname varchar 20 loc varchar 40...

MySQL 基礎 資料操作

資料的操作 crud 插入資料記錄 insert into 插入資料 插入完整資料記錄 插入資料記錄一部分 插入多條資料記錄 插入查詢結果。1 插入完整資料記錄 建立表 create table t dept deptno int 11 dname varchar 20 loc varchar 40...

MYSQL學習02 MySQL基礎操作

學習sql的基本查詢。語法 select column 1,column 2,from table 1 inner left right join table 2 on conditions where conditions group by column 1 h ing group conditi...