Hi
I have created the fulltext index on Address table by following way -
create fulltext index on address
(
address
)
key index pk_address on FTAddress
with change_tracking auto
Now, I want to alter it.
Insted of only address, i want to add following columns City,State & Country on it.
How can i do this ?