📄 hitems.table
字号:
## 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));
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -