SQL增 查 改語句

2021-08-11 17:00:32 字數 825 閱讀 2878

insert into table_name (列1, 列2,…) values (值1, 值2,….)

select */列名稱 from 表名稱

update 表名稱 set 列名稱 = 新值 where 列名稱 = 某值

delete from 表名稱 where 列名稱 = 值

select from

where

order by desc

limit ,

資料庫更新 sql語句

update message set content=」資料庫更新」 where id = 「7」;

用count做乙個統計

select count(id) from message where conversation_id = 「12_14」;

select content from message where conversation_id=」12_14」 order by id limit 3 offset 1;

count統計次數,group by分組

執行如下sql語句

id降序,從第0個開始,選擇10個資料行。

檔案操作 增改查

修改檔案的兩種方式 1.第一種方法 在原檔案中修改 先開啟檔案,把檔案內容讀出來賦值給乙個變數,關閉檔案,重新開啟檔案,把檔案內容寫到檔案中 with open r f r encoding utf 8 as f data f.read print data print type data with...

基本SQL 語句運算元據增刪查改

1 建立資料庫 create database 資料庫名 如 create database student 2 連線到乙個已經存在的資料庫 use 資料庫名 如 use student 3 刪除資料庫 drop database 資料庫名 如 drop database student 4 建立表...

MSSQL 用openrowset增改查xlsx

注意 1 首先要允許使用ace及動態引數 2 excel12.0應寫為 excel 12.0 1 查 允許在程序中使用ace.oledb.12 exec master.dbo.sp msset oledb prop n microsoft.ace.oledb.12.0 n allowinproces...