September 29, 2017 at 8:26 am
Hi
Looking to find record that contain characters berfore and after and ignore the ones in the middle.
For example
Here are two records
looking to pickup anything that contains '1NNNNNN202'
where I only want to look at the 1 and 202
So the example "I 305|S 166|C 001 008 411|1 2408 202" <- I Want
but "|I 305|S 166|C 001 008|1 2026 243" <- I dont want
but picking up the second record with like '%201%' because of "|I 305|S 166|C 001 008|1 2026 243"
and not always in the same place for example "|I 305|S 166|C 001 411|1 7100 202|2 7101 175"
Thanks
Joe
September 29, 2017 at 8:37 am
jbalbo - Friday, September 29, 2017 8:26 AMHiLooking to find record that contain characters berfore and after and ignore the ones in the middle.
For example
Here are two records
looking to pickup anything that contains '1NNNNNN202'
where I only want to look at the 1 and 202
So the example "I 305|S 166|C 001 008 411|1 2408 202" <- I Want
but "|I 305|S 166|C 001 008|1 2026 243" <- I dont want
but picking up the second record with like '%201%' because of "|I 305|S 166|C 001 008|1 2026 243"
and not always in the same place for example "|I 305|S 166|C 001 411|1 7100 202|2 7101 175"Thanks
Joe
I'm not completely clear on the rules for what you want to keep, but it looks like you want to split the string into parts and extract only the parts that meet a specific pattern. There's an excellent article at http://www.sqlservercentral.com/articles/String+Manipulation/94365/ that covers that exact topic.
September 29, 2017 at 8:45 am
jbalbo - Friday, September 29, 2017 8:26 AMHiLooking to find record that contain characters berfore and after and ignore the ones in the middle.
For example
Here are two records
looking to pickup anything that contains '1NNNNNN202'
where I only want to look at the 1 and 202
So the example "I 305|S 166|C 001 008 411|1 2408 202" <- I Want
but "|I 305|S 166|C 001 008|1 2026 243" <- I dont want
but picking up the second record with like '%201%' because of "|I 305|S 166|C 001 008|1 2026 243"
and not always in the same place for example "|I 305|S 166|C 001 411|1 7100 202|2 7101 175"Thanks
Joe
SELECT YT.YourField
FROM YourTable AS YT
WHERE YT.YourField LIKE '1%202'
Steve (aka sgmunson)
Rent Servers for Income (picks and shovels strategy)
September 29, 2017 at 8:53 am
sgmunson - Friday, September 29, 2017 8:45 AMjbalbo - Friday, September 29, 2017 8:26 AMHiLooking to find record that contain characters berfore and after and ignore the ones in the middle.
For example
Here are two records
looking to pickup anything that contains '1NNNNNN202'
where I only want to look at the 1 and 202
So the example "I 305|S 166|C 001 008 411|1 2408 202" <- I Want
but "|I 305|S 166|C 001 008|1 2026 243" <- I dont want
but picking up the second record with like '%201%' because of "|I 305|S 166|C 001 008|1 2026 243"
and not always in the same place for example "|I 305|S 166|C 001 411|1 7100 202|2 7101 175"Thanks
Joe
SELECT YT.YourField
FROM YourTable AS YT
WHERE YT.YourField LIKE '1%202'
Or if it's a single column with multiple values (terrible choice for the design).
WITH SampleData AS(
SELECT 'I 305|S 166|C 001 008 411|1 2408 202' AS String
UNION ALL
SELECT '|I 305|S 166|C 001 008|1 2026 243'
)
SELECT *
FROM SampleData
WHERE '|' + String + '|' LIKE '%|1%202|%';
September 29, 2017 at 9:00 am
I'm not entirely sure of your intended search rules either, but as best I can tell I think this should get you close:
WHERE ColumnName + '.' LIKE '%[^0-9]1 % 202[^0-9]%'
SQL DBA,SQL Server MVP(07, 08, 09) "It's a dog-eat-dog world, and I'm wearing Milk-Bone underwear." "Norm", on "Cheers". Also from "Cheers", from "Carla": "You need to know 3 things about Tortelli men: Tortelli men draw women like flies; Tortelli men treat women like flies; Tortelli men's brains are in their flies".
Viewing 5 posts - 1 through 4 (of 4 total)
You must be logged in to reply to this topic. Login to reply
This website stores cookies on your computer.
These cookies are used to improve your website experience and provide more personalized services to you, both on this website and through other media.
To find out more about the cookies we use, see our Privacy Policy