Viewing 8 posts - 1 through 8 (of 8 total)
yah I see that now so I requested a new col and that contain an id to link the rows; modified the query and it works
May 2, 2016 at 3:38 pm
https://www.idera.com - looks like it has some interesting tools for free
May 2, 2016 at 3:09 pm
pietlinden,
Included in the original post:
--tblOrder
--Keysv
--72apple
--72orange
--73100
--73100
--desired end results
--idd
--7Value of apple 100
--7Value of orange 100
Below are the create and insert stmts:
--table create
CREATE TABLE [dbo].[tblOrder](
[Key] [int] NOT NULL,
[varchar](50) NOT NULL,
[v]...
May 2, 2016 at 2:56 pm
Luis - working on a project that has it setup as follows:
key - is a foreign key to a primary key in another table
s - is a setting id --...
May 2, 2016 at 2:44 pm
think this will work:
select replace(stuff((select ' ' + oap from @OAP for xml path('')),1,1,''),'</br >', '</br>')
April 29, 2016 at 9:50 am
that produced:
apple1</br > apple2</br >
so how do i get to:
apple1</br>apple2</br>
April 29, 2016 at 9:47 am
Thanks, Lynn - not sure how I over thought that....
April 28, 2016 at 10:03 am
Viewing 8 posts - 1 through 8 (of 8 total)