首發日期:2018-04-11
給某些字段插入資料(與上面一樣有單條和多條的用法):insert into 表名(字段列表) values(值列表);
usetest;
create
table
student(
id int
primary
keyauto_increment,
name
varchar(15) not
null
,gender
varchar(10));
--插入資料
insert
into student(name,gender) values
("lilei","male");
insert
into student(name,gender) values("jack","male"),('
alice
','female');
--查詢
select
*from student;
檢視部分字段:
根據條件篩選結果:where子句
基於值的範圍:
條件復合:
select*from
student;
select name from
student;
select
*from student where name =
"lilei";
select
*from student where id !=1;
select
*from student where name like "li%
";select
*from student where id in (1,3,5); --
值為1,3,5的記錄
select
*from student where id not
in (1,3,5
);select
*from student where id between
1and5;
select
*from student where name ="lilei" or name =
"jack";
select
*from student where
not id =
1;
mysql學習之完整的select語句
)。
更新多個字段:
更新指定記錄:
更新指定條數記錄:
update student set name ="lilei";
update student set name = "hanmeimei",gender ="female" where name="lilei" limit 1
;update student set name = "lile" where id =2;
update student set name = "lile" where name = "lilei" limit 2;
刪除指定記錄:
刪除指定條數:
deletefrom student where id =
2;
mysql基本操作 MySQL基本操作
mysql中新增使用者,新建資料庫,使用者授權,刪除使用者,修改密碼 注意每行後邊都跟個 表示乙個命令語句結束 1.新建使用者 1.1 登入mysql mysql u root p 密碼 1.2 建立使用者 mysql insert into mysql.user host,user,passwor...
mysql 基本操作 mysql基本操作
mysql 建立表,並設定主鍵自增 create table log logid int 4 primary key not null auto increment,logtitle varchar 32 not null logcontent varchar 160 not null logtim...
MySQL的基本操作 1 資料庫的基本操作
2019 10 17 最近跟著書本在學習mysql,整理了一下重點部分供日後自己回顧。本人所用版本為8.0.17 mysql 5.7從入門到精通 劉增傑 mysql安裝完後,會在其data目錄下自動建立幾個必須的資料庫 檢視當前所有存在的資料庫,輸入語句 建立資料庫 建立好資料庫後,使用 show ...