TD8 0資料庫表的字段中文對照

2021-04-24 07:35:31 字數 2927 閱讀 2130

defect

bg_actual_fix_time          缺陷修復的實際時間

bg_responsible          被分配給

bg_closing_version          已關閉缺陷的版本

bg_closing_date          關閉日期

bg_bug_id          缺陷id

bg_description          描述

bg_detected_by            發現者

bg_edtection_version           版本

bg_detection_data           發現日期

bg_estimated_fix_time           估計修復的時間

bg_vts             修改時間

bg_planned_closing_ver           計畫關閉的版本

bg_priority            缺陷優先順序

bg_project            專案

bg_dev_comments            研發注釋

bg_reproducible            能否重現

bg_severity            嚴重級別

bg_status            缺陷狀態

bg_summary            概要

test

ts_creation_date           建立日期

ts_description            描述

ts_responsible            設計者

ts_estimate_devtime           估計設計和生成測試的時間

ts_exec_status            執行狀態

ts_vts             修改時間

ts_path             路徑

ts_status            狀態

ts_steps            步驟

ts_template            模板

ts_name             測試名稱

ts_type             型別

test step

st_actual            實際結果

st_description            描述

st_execution_date           執行日期

st_execution_time           執行時間

st_expected            預期結果

st_test_id            測試資料

st_status            狀態

st_step_name            步驟名稱

runrn_duration            持續時間

rn_execution_date           執行日期

rn_execution_time           執行時間

rn_host             主機名

rn_os_name            作業系統

rn_os_butld            作業系統生成的編號

rn_os_sp            作業系統的服務軟體包

rn_run_name            執行名稱

rn_status            狀態

rn_test_version            測試的版本

rn_tester_name            測試員

requirement

rq_req_author            作者

rq_req_status            覆蓋狀態

rq_req_date            建立日期

rq_req_time            建立時間

rq_req_comment            描述

rq_vts             修改時間

rq_req_name            需求名稱

rq_req_priority            優先順序

rq_req_product            產品

rq_req_id            需求id

rq_req_reviewed            被檢查

rq_req_type            型別

test in testset

tc_exec_date            執行日期

tc_vts             修改時間

tc_plan_scheduling_date           計畫執行日期

tc_plan_scheduling_time           計畫執行時間

tc_host_name            計畫執行主機名

tc_tester_name            測試負責人

tc_status            狀態

tc_test_version            測試版本

tc_actual_tester           測試員

tc_exec_time            執行時間

testset

cy_close_date            關閉日期

cy_comment            描述

cy_vts             修改時間

cy_open_date            開啟日期

cy_status            狀態

cy_cycle            測試集

MYSQL資料庫帶中文的字段排序

今天遇到了乙個排序問題 對帶有中文的資料庫中的某個字段排序時 例如 order by name 排序後的結構不是我們想要的結果。舉例如下 select alias from device order byalias 結果如下 這其實並不是我們想要的結果。我們期望的結果應該這樣的 根據漢字首字母排序,...

MySQL查詢資料庫表和資料庫字段

information schema資訊資料庫 mysql中存在乙個自帶的資料庫information schema,其中儲存著關於mysql伺服器所維護的所有其他資料庫的資訊。查詢test database中的檢視 select from information schema.tables whe...

資料庫表擴充套件字段設計

一 擴充套件字段表 乙個表的字段可能並非一成不變,系統的執行 需求的變化等客觀條件可能會需要增加其他字段,如何在不直接修改表設計的前提下滿足需求呢?該擴充套件字段表的思想就是將列設計轉化為行設計,欄位的增加表現為記錄的增加。當然這種方式也不是萬能的,對於需要排序 查詢和索引的字段最好還是通過新增表字...