MySQL基礎語法操作

2021-08-28 23:12:54 字數 1560 閱讀 7039

一、sql語句組成

1.ddl(資料定義);

2.dml(資料操作);

3.dql(資料查詢);

4.dcl(資料控制);

二、資料型別

1.整數

1)tinyint

2)smalliint

3)mediumint

4)int

5)bigint

2.浮點型

1)float

2)double

3)decimal

3.字串

1)char

2)varchar

3)tinytext

4)text

5)mediumtext

6)longtext

4.日期、時間

1)date

2)time

3)year

4)detetime

5)timestamp

5.二進位制

1)tinyblob

2)blob

3)mediumblob

4)longblob

三、基礎語法

1.建立資料庫

create database +資料庫名

2.顯示資料庫

show databases

3.丟棄資料庫

drop database+名稱

4.使用

use+名稱

5.建立表

create table 表名(列名 資料型別 約束);

6.看錶

desc+表名稱

7.重新命名

rename

8.描述

describe

9.改列名

alter table 表名 change 原列名 新列名 型別

10.刪除列

alter table 表 drop 列

11.刪除主鍵約束

alter table 表名 drop

12.刪除索引名

alter table 表名 drop index 索引名

13.建立索引

create index 索引名 on 表名(列名);

14.預設約束

alter table 表明 change 原列 新列 資料型別 default 預設值

15.刪除外來鍵約束

alter table 表名 drop foreignlcey 外來鍵名稱

16.插入行資料

insert into 表名(列名)values (值);

17.主鍵自動增長

主鍵+auto_increment;

18.查詢語句

select( )from 表;(括號中包含*、列、distinct三種型別,*代表所有資料)

19.資料排序

select 列 from 表 order by 列 a asc\desc(asc代表公升序,desc代表降序)

四、約束

1.唯一性

unique

2.非空約束

not null

3.預設

defaule

MySQL 基礎操作語法

cmd控制台中鏈結mysql mysql h localhost u root p 顯示所有資料庫 show databases 建表 create table t test id int auto increment primary key not null,name varchar 20 uni...

mysql基礎語法演示 mysql基礎語法

1 ddl 增刪改查 1 select 獲取資料 select from 表名 where 條件 2 update 更新資料 update 表名 set 欄位名 值,欄位名 值 where 條件 3 delete 刪除資料 delete from 表名 where 條件 4 insert into ...

mysql 語法入門 mysql基礎語法

1 dml 增刪改查 1 select 獲取資料 select from 表名 where 條件 2 update 更新資料 update 表名 set 欄位名 值,欄位名 值 where 條件 3 delete 刪除資料 delete from 表名 where 條件 4 insert into ...