產品經理的技術腦 常用術語彙總

2021-10-02 07:47:14 字數 1344 閱讀 6382

web服務端:作業系統+web服務+解釋執行環境+資料庫服務

windowsserver:lls+asp(.net)+sql server            .net

linux :apache+php+mysql                                 lamp

unix/windows:tomcat+jsp+oracle                       j2ee

sql語言,結構化查詢語言,用來訪問和運算元據庫(sql server/mysql/oracle)

建立資料庫——createdatabase websecurity

檢視資料庫——show databases

切換資料庫——usewebsecurity(新建表時需要切換)

刪除資料庫——drop databasewebsecurity

注:sql語句對大小寫不敏感,分號作為語句的結束,程式中會自動補充

create table teacher()

id int(4)not null primary key auto increment.

namechar(20) not null,

*** char(10) not null,

addr char(20) not null

show tables:

insert into teacher(name,***,addr)values('leo','male,'hangzhou');

select *from teacher

update tercher set name = 'ivan' where id =1;

delete from teacher where name ='ivan';

①where語句

select 你要的資訊 from 資料表(或多個)where滿足的條件(條件判斷)

例:select name fromteacher where addr='hangzhou' and ***='male';

②order by句子

select 你要的資訊 from 資料表(或多個)orderby 字段(asc/desc)

對姓名進行排序,select * fromteacher order by name;

注:order by "數字",判斷資料表的字段長度-----sql注入中常用

③union句子

select 你要的資訊 from 表2 union select你要的資訊 from 表1

重複的也要顯示時用union all

dedecms系統常用術語彙總

全域性標記 全域性標記指的是應用在 主頁 單獨頁面 頻道封面使用的單獨的模板標記,在列表或文章模板中,一般只允許呼叫channel arclist標記 hotart coolart imglist等都是這個標記延伸出來的標記 但是環境變數限定為文章或列表所在的欄目,如果你要測試的標記是在列表或文章中...

LR效能測試中的專用術語彙總

lr效能測試常用術語 吞吐率 每秒在網路上傳輸的資料量 是指server端返回client端的資料量 同樣很重要 tps transaction per second 每秒系統能夠處理事務的數量 與併發使用者數相關。舉個例子,乙個事務的響應時間是1s,現在有乙個使用者與伺服器進行互動,那麼此時的tp...

產品經理需要具備的知識技能彙總

1 axure,用於原型設計,必須非常熟練。2 mindmanger 簡稱腦圖,簡單。3 visio,簡單,用於繪製流程圖。4 office辦公軟體 excel,word,ppt 簡單又重要,無上限。1 需要理解一些開發的技術術語 2 了解一些互動設計的知識 3 使用者心理 3 從事行業的業務知識 ...