?? hitems.table
字號(hào):
## The HITEMS table is used to store the defintion of various hardware items.## _rowid is a positive integer, unique to this table that is used to # identify a specific row in the table.# group which 'group' of items this belongs to. (Hard drive, NIC etc..)# created is the date that this entry was created.# modified is the date that this entry was last modified.# name is what this item is called.# description guess.# model is the manufacture model ## vendor is the vendor id for this vendor (vendors table?)# create TABLE hitems ( _rowid int not null, igroup char(10), created char(20), modified char(20), name char(60), description char(127), model char(40), vendor char(20), primary key (_rowid));
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -