如果你想了解更多關於資料庫的知識,可以點選:SQL教學
##資料庫的最核心也是最常用的操作是增刪改查。下面我們來為大家介紹一下增刪蓋查的具體操作語法。
資料庫 查詢資料庫:show databases; 建立資料庫:create database 函式庫名稱; 刪除資料庫:drop database 庫名表
建立表:create table 表名(字段名稱資料類型【屬性】【索引】) 查看表格結構:desc 表名 檢視表:show tables 插入資料:insert into 表名value() 插入資料:insert into 表名value()##表格資訊:show create table 表名
查看指定庫的表:show tables where 目標庫名稱
##字段
# # 增加:alter table 表名add 字段名資料型態【屬性】【索引】 往指定位置後面插入字段:alter table 表名add 字段名資料類型【屬性】 【索引】after 指定的字段名 往第一個位置插入:alter table 表名add 字段名資料類型【屬性】【索引】first 刪除:alter table 表名drop 字段名# # 修改:alter table 表名change 舊欄位新欄位資料型別【屬性】【索引】 條件語句:> < >= <= != and or# >= <= != and or# >= <= != and or#o##################################################################################################' #######資料############ 新增:insert into 表名value()###### 刪除:delete from 表名(慎用,刪除整個表資料) ###### delete from 表名where 條件語句###### 修改:update 表名set 欄位名稱=值where 條件語句##### 查詢:精確查詢:精確查詢條件語句###### 運算子查詢:select * from 表名where id = 1 1###### 及 1 邏輯查詢:select * from表名where and條件###### select * from 表名where or條件###### se 7%"" from ) or條件###### 拉值「7%」的值找到值:「7% 」表名:5% 7%) from值。的數據) a%(查找以a開頭的數據) %a(查找以a結尾的數據)###### 排序與受限查詢:select * from 表名where order by 列名desc desc:表示從大到小排序 asc:表示從小到大排序###### select * form 表名limit x, select * form 表名select count (列名) from 表名###### count:計算表中某個列或多個列中資料的次數###### max:最大值# ##### min:最小值###### 距e 字段between 0 and 10 查找0到10區間的數據###### 分組查詢:select 展示的列from 表名group by 參考列###### 名 ] select name,count( content) from 表名 group by name having count(content) > 5 having 是在聚合的基礎上再篩選###### 〔一般與聚合資料一起使用查詢與聚合查詢一起使用查詢。以上是資料庫最核心也是最常用的操作是什麼的詳細內容。更多資訊請關注PHP中文網其他相關文章!