I'm using SQL Server 2012. I have indexed the RFC and IMSS column in the Persons table as full text search index. The table is:
PersonId RFC IMSS
--------- ------------ --------------
1 COGS070990IB3 1247587150
2 COGS070990IB3 4781105741
3 FDRH071580AV2 1200467851
4 QWEZ071245JE1 0913218712
I need to search cascaded RFC and then IMSS using the value of string 'COGS070990IB3 1247587150' and the result should be:
PersonId RFC IMSS
--------- ------------ --------------
1 COGS070990IB3 1247587150
Is that possible?
I hope you can help me. Thanks!