資料庫 mysql學習筆記1之建立等基本操作

2021-10-09 01:20:40 字數 1605 閱讀 9237

1.查詢

select

*from admin

where admin_id =

1;

2.建立資料庫

create

database test;

3.建立資料表

create

table pet (

name varchar(20

)not

null

default

''comment

'寵物姓名'

, owner varchar(20

)not

null

default'',

species varchar(20

),*** char(1

)null

, birth date

default

current_date

, death date

,primary

key(name)

) commnet '寵物表'

;

檢視表結構

mysql > describle pet;
4.插入記錄

insert

into pet(name,owner,species,***,birth,death)

values

('puffball'

,'dinae'

,'hamster'

,'f'

,'1993-03-30'

,null),

('旺財'

,'周星馳'

,'狗'

,'公','1990-01-01'

,null

);

5.轉殖表

select

*into pet_bak

from pet;

create

table pet_bak

asselect

*from pet;

6.增/刪/改/查

增:

insert

into 表名 value(.

..);

刪:delete

from 表名

where name =

'fluffly';改:

update 表名

set name=

'wanwangcai'

where owner =

'周星馳';查:

select

top5 字段列表

from 表名

order

by 欄位1

[asc

/desc

],欄位2

[asc

/desc

]limit

10offset

2;(limit

0,10;等價於 limit

10;)

**補充:mysql的資料型別:

mysql創庫創表語句 mysql 資料庫(1)

1 1.掌握創庫,創表的方法 創庫create database haha 使用庫use haha 創表1create table t1 id int 檢視所有表 show tables 插入資料 insert into t1 values 1 查詢所有資料 select from t1 刪除表dr...

MySQL資料庫學習筆記 1

1.重設root密碼 1 建立乙個txt檔案,定義修改密碼的sql語句 alter user root localhost identified by 123456 2 以管理員身份開啟windows powershell 輸入 net stop mysql80 輸入 mysqld defaults...

資料庫MYSQL學習筆記1

資料庫mysql學習筆記1 資料庫是按照資料結構來組織 儲存和管理資料的倉庫。1.資料庫 組織.儲存.管理資料的倉庫 配置環境變數 path mysql.exe 所在路徑 2.資料庫操作 mysql u root p 用管理員運算元據庫 a 檢視有哪些資料庫 建立student資料庫 i.show ...