SQL Server Full Text Search - Create one computed column
问题 I am currently working on a project where I want to search for employees via just one input search term. For this I am using the SQL FTS. The table schema looks like this Employee table EmployeeId, Firstname, Lastname Sample data 1, John, Miller 2, Chuck, Norris Address table AddressId, EmployeeId, CityId, Street, StreetNumber Sample data 1, 1, 1, Avenue, 12 2, 2, 2, Wimbledon Rd, 12 City table CityId, Name, ZipCode Sample data 1, Hamburg, 22335 2, London, 12345 So now I got the following