I need to query data in a singular column for specific values (resistance & negative resistance)
Ex. Sort only values containing resistance & negative_resistance
uid timestamp data user_timestamp
209 "2019-04-05 02:23:22" "{""ui_state"": 8}" "2019-04-04 19:23:21"
209 "2019-04-05 02:25:33" "{""ui_state"": 8}" "2019-04-04 19:25:33"
209 "2019-04-05 02:21:56" "{""ui_state"": 40, ""resistance"": 2854, ""negative_resistance"": 2854, ""positive_resistance"": 3281}" "2019-04-04 19:21:55"
209 "2019-04-05 02:21:56" "{""ui_state"": 40, ""resistance"": 2851, ""negative_resistance"": 2851, ""positive_resistance"": 3289}" "2019-04-04 19:21:55"
209 "2019-04-05 02:21:56" "{""ui_state"": 40, ""resistance"": 2848, ""negative_resistance"": 2848, ""positive_resistance"": 3309}" "2019-04-04 19:21:56"
Goal: I want a SQL Query statement that indexes & selects data that contains 'resistance' & 'negative_resistance' values
EDIT: Solution found here : LIKE vs CONTAINS on SQL Server
Thank you for help everyone