Tagged Questions

3
votes
7answers
262 views

how to determine if a record in every source, represents the same person

I have several sources of tables with personal data, like this: SOURCE 1 ID, FIRST_NAME, LAST_NAME, FIELD1, ... 1, jhon, gates ... SOURCE 2 ID, FIRST_NAME, LAST_NAME, ANOTHER_FIELD1, ... 1, jon, ...
2
votes
1answer
129 views

How do I count varchar in a varchar using TSQL

What is the best way to count the occurence of a varchar within a varchar. I rather not loop through a text in order to find certain combinations. This select only find the first SELECT CASE WHEN ...