Viewing 6 posts - 46 through 52 (of 52 total)
Phil,
I'm getting this error. Here is my sql statement:
SELECT Notes, NoteId
,TotalPaid = SUBSTRING(Notes, c.Pos1, c.Pos2 - c.Pos1)
FROM dbo.NoteReceive
CROSS APPLY
(
SELECT Pos1 = CHARINDEX('Total Paid amount...
February 21, 2022 at 1:46 pm
Never mind Phil, I got it. Thank you for your help. also thank you Jonah.
February 21, 2022 at 1:39 pm
Thanks Phil,
I'm sorry for such a novice question(New to SQL) I have this information in a Notes Field along with an ID Field in a table. How do I reference...
February 21, 2022 at 1:18 pm
Hi Phil,
I'm trying to exact the Payment information (In Red). My problem is they all have different starting positions, I did the Charindex recommend by Johan and I get 42,43,44,45,46...
February 21, 2022 at 12:54 pm
Thank you Johan,
I tried the Charindex and I'm able to find the starting position. I have multiple positions 42,43,44,45,46. What's the best way to go about this? a Case statement...
February 21, 2022 at 12:47 pm
Viewing 6 posts - 46 through 52 (of 52 total)