mysql 基本操作總結

2021-07-29 06:10:55 字數 1740 閱讀 1508

***************=《資料》********************

————————————-(增)————————————-

增加資料

(1) insert into 表名 values(值1,值2,......);

(2) insert into 表名(欄位名1,欄位名2,.....) values(值1,值2,......);

————————————-(刪)————————————-

(1)delete (刪除資料表裡記錄的語句,可以恢復)

1.delete from 表名 where 條件; (刪除指定的某條資料) 【常用】

2.delect from 表名 ; (刪除全表資料)

例:1.delete from stu where id = 10;

2.delete stu ;

(3)truncate (刪除資料,不可恢復)

truncate table 表名;

例:truncate table stu;

————————————-(查)————————————-

select * from 表名 where 條件

select 列名,列名 from 表名 where 條件。

where 篩選功能,用在表名後;多個要求用 and 或 or 連線;

(or滿足乙個即可顯示,and兩個都要滿足)

between and :

between 1 and 2 = 12

in:

表名 = 資料1 or 表名 = 資料2

= 表名 in (資料1,資料2);

like:

用在where後 用%表示模糊字

null

判斷乙個字段是否為null 用is null 不是=null;

三種關聯方式:

select * from 表一,表二,表三 where 一關二 and 二關三 ;

select * from 表一 join 表二 on 一關二 join 表三 on 二關三;

select * from 表一,表二,表三 ;容易出現迪卡爾效應(資料重複)。

————————————–(改)————————————–

update的語法:(修改個別資料)

update 表名 set 列名 = '新資料' where 另乙個列名=資料 ;

***************====『結構』***************===

————————————–(增)———————————-

新增一列

alter table 表名 add(列名 資料型別(長度));

————————————–(刪)———————————-

(1)刪除一列

alter table 表名 drop column 列名; 【常用】

(2)刪除表結構,不可恢復

drop table 表名

—————————————(查)—————————————

檢視表的結構

desc 表名;

—————————————-(改)————————————–

修改表結構:

alter table 表名 modify ( 列名 型別(值));

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資料庫基本操作總結

mysql u 使用者名稱 p 密碼 例如 root localhost mysql u root p enter password 省略內容 mysql 或者 root localhost mysql u root pabc123.省略內容 mysql 兩種方式都可以成功登陸 方法一 mysql ...