ateneva
9/2/2018 - 10:31 AM

What is the difference between charindex and patindex in SQL Server?

What is the difference between charindex and patindex in SQL Server?

-------------------SQL Server-------------------------------------------

select 
tags,

charindex('technology', tags)    as char_position_tech,
patindex('technology', tags)     as pat_position_tech,
patindex('%technology%', tags)   as pat_position_tech_2,

charindex('Technology', tags)    as char_position_Tech,
patindex('%Technology%', tags)   as pat_position_Tech,

charindex('TED%', tags)          as char_position_TED,
patindex('%TED%', tags)          as pat_position_TED

from datageeking.dbo.ted_talks

/*tags                                                                               |char_position_tech |pat_position_tech |pat_position_tech_2 |
-------------------------------------------------------------------------------------|-------------------|------------------|--------------------|
['alternative energy', 'energy', 'exploration', 'green', 'science', 'technology']    |70                 |0                 |70                  |
['DNA', 'biology', 'business', 'genetics', 'life', 'science', 'technology']          |64                 |0                 |64                  |
['TED Brain Trust', 'children', 'creativity', 'education', 'invention']              |0                  |0                 |0                   |
['TEDx', 'business', 'creativity', 'culture', 'design', 'fashion', 'law', 'media']   |0                  |0                 |0                   |
['TED Fellows', 'children', 'culture', 'film', 'politics', 'suicide', 'war']         |0                  |0                 |0                   |
['AIDS', 'HIV', 'Vaccines', 'disease', 'global issues', 'health', 'medicine']        |0                  |0                 |0                   |
['cities', 'music', 'performance', 'poetry', 'storytelling']                         |0                  |0                 |0                   |
['Internet', 'TEDx', 'law', 'music', 'online video', 'technology', 'web']            |55                 |0                 |55                  |

tags                                                                                 |char_position_Tech |pat_position_Tech |
-------------------------------------------------------------------------------------|-------------------|------------------|
['alternative energy', 'energy', 'exploration', 'green', 'science', 'technology']    |70                 |70                |
['DNA', 'biology', 'business', 'genetics', 'life', 'science', 'technology']          |64                 |64                |
['TED Brain Trust', 'children', 'creativity', 'education', 'invention']              |0                  |0                 |
['TEDx', 'business', 'creativity', 'culture', 'design', 'fashion', 'law', 'media']   |0                  |0                 |
['TED Fellows', 'children', 'culture', 'film', 'politics', 'suicide', 'war']         |0                  |0                 |
['AIDS', 'HIV', 'Vaccines', 'disease', 'global issues', 'health', 'medicine']        |0                  |0                 |
['cities', 'music', 'performance', 'poetry', 'storytelling']                         |0                  |0                 |
['Internet', 'TEDx', 'law', 'music', 'online video', 'technology', 'web']            |55                 |55                |x


tags                                                                                 |char_position_TED |pat_position_TED
-------------------------------------------------------------------------------------|------------------|----------
['alternative energy', 'energy', 'exploration', 'green', 'science', 'technology']    |0                 |0         
['DNA', 'biology', 'business', 'genetics', 'life', 'science', 'technology']          |0                 |0         
['TED Brain Trust', 'children', 'creativity', 'education', 'invention']              |0                 |3         
['TEDx', 'business', 'creativity', 'culture', 'design', 'fashion', 'law', 'media']   |0                 |3         
['TED Fellows', 'children', 'culture', 'film', 'politics', 'suicide', 'war']         |0                 |3         
['AIDS', 'HIV', 'Vaccines', 'disease', 'global issues', 'health', 'medicine']        |0                 |0         
['cities', 'music', 'performance', 'poetry', 'storytelling']                         |0                 |0         
['Internet', 'TEDx', 'law', 'music', 'online video', 'technology', 'web']            |0                 |15        


*/