14 lines
310 B
Plaintext
14 lines
310 B
Plaintext
|
|
CREATE NONCLUSTERED INDEX [INDEX_CHANNELCODES_CODETYPE] ON [dbo].[ChannelCodes]
|
|
(
|
|
[CodeType] ASC
|
|
)
|
|
INCLUDE ( [Id],
|
|
[Code],
|
|
[Name])
|
|
|
|
|
|
|
|
|
|
|