Viewing 3 posts - 16 through 18 (of 18 total)
If you want to retrieve all the pictures to a single column, you can use similar syntax:
declare @table1 as table (
ProductId int
,SKU varchar(10)
,[Description] varchar(50)
)
insert into @table1
...
January 9, 2012 at 5:42 pm
#1430867
The way you have described, it seems like a simple join would give you the desired result. But if you could explain bit clearly it'll be possible to answer your...
December 26, 2011 at 10:30 pm
#1425558
Hi,
Isn't there a function called 'str_replace()' in SyBase, for text replacement functionality ??
--Manjuke
http://www.manjuke.com
November 30, 2011 at 1:14 am
#1414473