User-583959464 posted
I am using sql server 2017. how can I build a index on [aliases] column with datatype
nvarchar(max) in the following table.
for aliases column, the possible max length is 17200. the performance is poor when I search for that column, how to improve?
CREATE TABLE [dbo].[tbl_testing](
[id] [bigint] NULL,
[aliases] [nvarchar](max) NULL
) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY]
GO