測試用到的基礎sql語句

2021-09-03 06:58:11 字數 853 閱讀 2955

sql

測試常用語句:

sp_help tablename檢視下表結構

(1)插入

insert into tablename (『004』,『楠楠』,24,『天津』)

順序不可亂。如果插入失敗,則全部插不進去

不插入的字段預設為空null

格式:insert into 表名(欄位1,欄位2) values (『啦啦』,12)

(2)刪除

delete from tables where 匹配條件;

原理:逐行掃瞄,當滿足條件,即操作

(3)更新

改乙個資料:

update worker set salary =salary+1000 where id =17372823383298476654;

改多個資料:

update worker set salary =salary+30,phone=13910281675 where id =17372823383298476654;

(4)查詢

select id,state from where name =『zz』;

等於號=還可以替換成 >大於 , !>不大於 , 不等於!=,不等於<>

like模糊匹配

其他:(1)單行注釋 –

(2)/*

多行注釋:實現testing資料庫存在,則刪除再建立

*/例子

if exists(

selectname from database where name =『testing』;

)drop database testing;

gocreate database testing;

go

效能測試用到的主要術語

l 響應時間 對請求作出響應所需的時間。它是作為使用者視角的軟體效能的主要體現。響應時間分為2部分 呈現時間 系統響應時間。呈現時間取決於資料在被客戶端收到響應資料後呈現頁面所消耗的時間 系統響應時間指應用系統從請求發出開始到客戶端接收到資料所消耗的時間。一般主要關心 系統響應時間 圖略 註明 n1...

不常用到的sql語句記錄

1 查詢觸發器是否存在 oracle select count as count from user triggers where trigger name upper triname sqlserver select count as count from sysobjects where nam...

SQL實驗用到的語句集合二

第三章 安全管理 1.windows身份驗證 sp grantlogin login 例子 允許test域使用者xz及sqlusers組連線sql服務 允許本地組users連線sql服務 sp grantlogin test xz sp grantlogin test sqlusers sp gra...