12 lines
318 B
Plaintext
12 lines
318 B
Plaintext
CREATE NONCLUSTERED INDEX [INDEX_CHANNELCODES_CODECODETYPE] ON [dbo].[ChannelCodes]
|
|
(
|
|
[Code] ASC,
|
|
[CodeType] ASC
|
|
)
|
|
INCLUDE ( [Id],
|
|
[Name])
|
|
|
|
|
|
|
|
|