create index ITriggerOprSerial on HBTrigger_EnglishNews(Opr, Serial)
create index ITriggerOprSerial on HBTrigger_EnglishNews(Opr, Serial) 这一句是什么意思? 是创建索引吗? 如果用ssms图形界面来做,该怎么弄?
谢谢
创建辅助触发表 (TriggerTable)
create table HBTrigger_EnglishNews
(
Serial bigint identity(1,1) not null primary key,
Id int not null,
Opr char(16),
Fields nvarchar(4000) null,
)
go
create index ITriggerOprSerial on HBTrigger_EnglishNews(Opr, Serial)
------解决方案--------------------图形。。右键点击表设计,然后右键点击任意列,索引/键
添加,然后各种勾选,最后退出的时候保存结构就行了
------解决方案--------------------额。。问题1,索引/键--列 这里是可以展开选择多列的
问题2,你看错了吧。。把窗口扩大一点,或者展开问题1中说的,多选列表
------解决方案--------------------主键默认是聚集唯一索引,若聚集索引以指定其他,主键是非聚集唯一索引