sql基礎語句

2021-09-24 21:25:00 字數 1145 閱讀 5419

資料庫mysql語法:增刪改查

查:資料庫查詢語句

基本語法:select $field from $table where $where order by $order limit $limit

"select username from sline_admin where id=7 order by id desc limit 1"

username 查詢欄位名 多個欄位用','隔開

sline_admin 查詢**

where 查詢條件 並列條件用and 或者or連線 都存在的時候需要用()將條件包起來

order 排序欄位及公升降循序

limit 查詢結果顯示條數

返回查詢結果集

待續...

增:

基本語法:insert into $table ($field) values ($value)

「insert into sline_admin (username, password) values ('jiuol', 123456)」

username password 欄位名 多個字段需要用()包起來,中間用逗號隔開 字段可以用反引號包起來用以區分 不用也可以

jiuol 123456 字段值 多個值用()包起來,且需要是欄位名一一對應,字串需要用引號抱起來,字段值之間用逗號隔開

返回受影響的條數

改:

基本語法:update $table set $fields where $where

"update sline_admin set username='就哦了',password=12345678 where id=10"

修改的多個字段之間用逗號隔開,字串用一號包起來

返回受影響的條數

刪:

基本語法:delete from $table where $where 

「delete from sline_admin where id=11」

返回受影響的條數

注意:刪除的時候需要特別小心一定要帶上where條件 否則將刪除整張** 且無法恢復

解決辦法:可以新增乙個是否顯示的字段做,封裝軟刪除功能

SQL基礎語句

一.資料庫查詢語句 select 1.查詢所有資料 select from 表名 select from exam books 2.按照一定的條件查詢 select from 表名 where 條件 select from exam books where id 20 3.範圍條件查詢 select...

SQL基礎語句

1.1.1dml 資料操作語言 1.1.2 ddl 資料定義語言 select update delete insert 1.2.1 select語法a.查詢所有 select from 表名 b.查詢列 select 列名 from 表名 注意 查詢列名時,列名用逗號隔開,最後的列名不要加逗號1....

基礎sql語句

從資料庫中刪除資料 delete 插入資料 insert into 建立新資料庫 create database 修改資料庫 alter database 建立新錶 create table 變更資料庫表 alter table 刪除表 drop table 建立索引 create index 刪除...