freepeople性欧美熟妇, 色戒完整版无删减158分钟hd, 无码精品国产vα在线观看DVD, 丰满少妇伦精品无码专区在线观看,艾栗栗与纹身男宾馆3p50分钟,国产AV片在线观看,黑人与美女高潮,18岁女RAPPERDISSSUBS,国产手机在机看影片

正文內(nèi)容

軟件測試培訓筆記-資料下載頁

2025-03-26 04:22本頁面
  

【正文】 期(Fixed on Date); 再現(xiàn)性(Reproducible); 回歸測試(Regression); 缺陷管理流程:(參考缺陷管理作業(yè)) 缺陷跟蹤單寫作準則(5C) Correct(準確),每個組成部分的描述準確,不會引起誤會; Clear(清晰),每個組成部分的描述清晰,易于理解; Concise(簡潔),只包含必不可少的信息,不包括任何多余的內(nèi)容; Complete(完整),包含復現(xiàn)該缺陷的完整步驟和其他本質(zhì)信息; Consistent(一致),按照一致的格式書寫全部缺陷報告。 缺陷跟蹤單基本內(nèi)容:(其他相關(guān)屬性);簡單描述;詳細描述;相關(guān)附件。 QC中缺陷管理流程:(實際流程應(yīng)參考各公司內(nèi)部流程或者書本)i. Qatester提交一個狀態(tài)為new的新缺陷后assigned to PM ii. PM查看該缺陷,并判斷是否為缺陷需要修改 :n224。 在ments中記錄否決意見后closed。 y224。 在ments中記錄相關(guān)意見后將該缺陷指派給相關(guān)開發(fā)人員,并將status置為open/reopeniii. Developer打開缺陷模塊,看到指派給自己的缺陷后確定是否修改: n224。 在ments中記錄意見后rejected to PM224。2 y224。 修改該缺陷,并將status置為fixed指給PMiv. PM將該缺陷指派給Qatester進行回歸測試v. Qatester看到指派給自己的fixed的缺陷后,進行回歸測試,通過? y224。 closed。 n224。 rejected給PM224。2 SQL SERVER216。 數(shù)據(jù)定義語言(DDL)? Create table 創(chuàng)建數(shù)據(jù)庫的表? Create index 創(chuàng)建數(shù)據(jù)庫表的索引? Drop table 刪除數(shù)據(jù)庫表? Drop index 刪除數(shù)據(jù)庫表的索引? Truncate table 刪除表的所有行? Alter table 修改表:增加表列、重定義表列、更改存儲分配等? Alter table add constraint 在已有的表上增加約束216。 數(shù)據(jù)操作語言DML? Insert 增加數(shù)據(jù)行? Delete 從表里刪除行? Update 更改表中數(shù)據(jù)? Select 從表或視圖中檢索數(shù)據(jù)行216。 數(shù)據(jù)控制語言DCL? Grant 將權(quán)限或角色授予用戶或其他角色? Revoke 從用戶或數(shù)據(jù)庫角色回收權(quán)限? Set role 禁止或允許一個角色216。 數(shù)據(jù)庫事務(wù)控制? Commit work 把當前事務(wù)所作的更改永久化(寫入磁盤)? Rollback 作廢上次提交以來的所有更改216。 Where語句中的通配符:Select * from objects where object_namelike ‘sql_m_il’ escape ‘’216。 字符類型轉(zhuǎn)換: 例:convert(varchar(5),@varage)216。 匯總函數(shù)? 平均值avg? 總和sum? 最小值min? 最大值max? 計數(shù)count? Count(*)和count (distinct )216。 Insert語句? Insert into 表名(列名1,n)value (值1,n)? Insert into student values (20051115,’黃飛鴻’,’男’,21,’cs’)? Insert into student(sname,sno,sdept) value(‘劉德華’,20055567,’cs’)? 未指明的字段內(nèi)容為null? Insert into 表名(列名1,n)select 語句;如:? Insert into student2(sno,sname,sdept) select sno,sname,sdeptfrom student1? 前提是兩個表的結(jié)構(gòu)相同216。 Update語句?Update 表名set 列名1=表達式1,列名2=表達式2.. Where 條件?Update student set sdept= ‘MA’where sno= ‘95001’?所有學生年齡加1?Update student set sage = sage+1?該語句只對單個表操作,不能同時對多表操作?該語句僅當事務(wù)提交(mit)后才生效;也可通過事務(wù)回滾rollback來作廢操作216。 在SQL Server 2000中有5種約束:主鍵約束(primary key constraint)唯一性約束(unique constraint)檢查約束(check constraint)缺省約束(default constraint)外部鍵約束(foreign key constraint)178。 課程實例:創(chuàng)建表訂單Acreate table 訂單A(訂單編號 int not null, 下單日期 datetime not null, 客戶編號 int not null)select * from 訂單A首先添加訂單名稱,varchar(20),nullalter table 訂單Aadd 訂單名稱 varchar(20) nullselect * from 訂單A之后刪除訂單名稱字段alter table 訂單Adrop column 訂單名稱select * from 訂單A然后同時添加訂單名稱,varchar(20),null和定購數(shù)量,int,nullalter table 訂單Aadd 訂單名稱 varchar(20) null,訂購數(shù)量 int nullselect * from 訂單A然后嘗試同時修改訂單名稱的字段長度為50,定購數(shù)量數(shù)據(jù)類型為numeric* 不能同時修改*alter table 訂單Aalter column 訂單名稱 varchar(50) nullselect * from 訂單Aalter column 訂單名稱 varchar(50) null 訂購數(shù)量 numeric 最后同時刪除訂單名稱和定購數(shù)量alter table 訂單Adrop column 訂單名稱,訂購數(shù)量select * from 訂單A向已有表訂單A的訂單編號字段添加主鍵約束alter table 訂單Aadd constraint 訂單編號_k primary key (訂單編號)select * from 訂單A創(chuàng)建定購項目表,并同時添加項目編號字段為主鍵create table 訂購項目(訂單編號 int not null, 項目編號 int not null, 書籍編號 int not null, 數(shù)量 int not null, primary key (項目編號))select * from 訂購項目向已有表定購項目添加新字段項目名稱和客戶名稱,并設(shè)置項目名稱字段為唯一鍵alter table 訂購項目add 項目名稱 varchar(20),客戶名稱 varchar(20)constraint 項目名稱_u unique (項目名稱)select * from 訂購項目在現(xiàn)有表定購項目上設(shè)置客戶名稱為唯一鍵alter table 訂購項目add constraint 客戶名稱_u unique (客戶名稱)設(shè)置數(shù)量字段必須在10到100之間alter table 訂購項目add constraint chk_數(shù)量 check (數(shù)量 between 10 and 100)insert into 訂購項目 values(1,2,3,4,39。張三39。,39。李四39。) 檢測數(shù)量字段的約束條件是否成立create table sincky(myid int identity(10,1) not null, 通過函數(shù)實現(xiàn)自動增量yourid varchar(10))添加定購地點字段,默認值是上海alter table 訂購項目add 訂購地點 varchar(50) null default 39。上海39。 設(shè)置缺省約束create table 書籍(書籍編號 int not null primary key, 書籍名稱 varchar(50) null, 價格 smallmoney null, 出版公司 char(20))alter table 訂購項目add constraint 訂單項目_f foreign key (書籍編號) references 書籍(書籍編號) 存儲過程:if exists (select * from sysobjects where name=39。sinckypro39。 and type=39。p39。)drop procedure sinckyprogocreate procedure sinckypro@varname varchar(50),@varage int as declare @inname varchar(50)set @inname = 39。sincky_39。+ @varnamecreate table testtable(myid int not null primary key,myname varchar(50) not null,mypasswd varchar(20) not null,myage int default 25)insert into testtable values(1,@inname,39。zhang39。,@varage) select * from testtabledrop table testtablegoexec sinckypro 39。51testing39。,55
點擊復制文檔內(nèi)容
公司管理相關(guān)推薦
文庫吧 www.dybbs8.com
備案圖鄂ICP備17016276號-1