SQL基本操作

2021-09-25 07:06:17 字數 1522 閱讀 3882

sql不區分大小寫

建立資料庫

– 建立資料庫

create database db1;

– 查詢資料庫

show databases;

– 修改資料庫

alter database db1 character set utf8;

– 刪除資料庫

drop database db1;

建立資料表

– 建立資料表 comment給列新增注釋,在設計表中檢視

create

table goods2(

id varchar

(128

)not

null

comment

'商品編號,不能為空,主鍵'

, gname varchar(9

)not

null

comment

'商品名稱'

,stock int(5

)not

null

default

0comment

'庫存'

,parchaseprice double(8

,2)not

null

default

0.00

,sellprice double(8

,2)not

null

default

0.00

,picture varchar

(128

)comment

'商品'

,primary

key(id)

);

修改資料表

– timestamp 時間戳(yyyy-mm-dd hh:mi:ss)佔4位元組 常用

– datetime 日期時間(yyyy-mm-dd hh:mi:ss)佔8位元組

– date 日期(yyyy-mm-dd)

– current_timestamp 系統函式,獲取當前系統時間

-- 新增一列

alter

table goods2 add

column feature varchar

(256

)comment

'商品描述'

;alter

table goods2 add

column shelftime timestamp

notnull

default

current_timestamp

onupdate

current_timestamp

comment

'商品上架時間'

;-- 刪除列abc

alter

table goods drop

column abc;``

`![在這裡插入描述]

(

SQL基本操作

create database mydatabase1 on primary 配置主資料檔案的選項 name mydatabase2 主資料檔案的邏輯名稱 filename d database database1 mydatabase1.mdf 主資料檔案的實際儲存路徑 size 5mb,主檔案的...

sql 基本操作

資料庫表的操作 sql code 列操作 新增列 alter table t add mycolumn intidentity 1 1 not null default 0 刪除列alter table t drop column mycolumn 修改列 alter table t alter c...

SQL 基本操作

select 用法 select 列名稱1,列名稱2 from table naem select from table name select distinct 去除列標籤中重複的部分 select distinct column naem1,colum name2 from table name...