I have a query just to show 1 client code as a demo. I would like to update the [strshort] column to be populated like this:
any words not in the TblWordTags to be used in the creation of the short string:
here
word 1= "A3"
word 2 ignore as it is in TblWordTags
Word 3 = Sport
query must update StrShort in this example to A3 + chr32() + Sport
The order of the rebuilt short string goes in same order just minus the words we dont want.
I am in a vb.net windows application pulling data from Sql server db Dictionary. I am not sure how to create this query, can it be done soley in sql server and then run as a stored procedure or do I need to pull the data in and create a function to do it?
. I only need to do the operation for clientcodes that have tagged words in TblTagWords. EE.JPG
Microsoft SQL Server
Last Comment
PeterBaileyUk
8/22/2022 - Mon
ste5an
First of all: You're talking about order of words, but your sample does not provide information about this order. Much worse it does not even has an criteria, which can be used for ordering.
So you may use something like
DECLARE @StopWords TABLE ( StopWordText NVARCHAR(255) NOT NULL PRIMARY KEY );INSERT INTO @StopWordsVALUES ( N'and' );DECLARE @Words TABLE ( WordText NVARCHAR(255) NOT NULL , SentenceID INT NOT NULL );INSERT INTO @WordsVALUES ( N'A3', 1 ), ( N'and', 1 ), ( N'Sport', 1 ), ( N'Cookies', 2 ), ( N'and', 2 ), ( N'Tea', 2 );WITH Filtered AS ( SELECT W.WordText , W.SentenceID FROM @Words W LEFT JOIN @StopWords SW ON W.WordText = SW.StopWordText WHERE SW.StopWordText IS NULL ) SELECT O.SentenceID , RTRIM(( SELECT I.WordText + ' ' FROM Filtered I WHERE I.SentenceID = O.SentenceID FOR XML PATH('') )) AS ConcatWordText FROM Filtered O GROUP BY O.SentenceID;
apologies I am a beginner at the sql server stuff and berating me publicly seems a tad unkind but well that's in-experience for you. The image was there For info and not meant too offend. I will endeavor in future to add the items you said.
So you may use something like
Open in new window