Viewing 3 posts - 1 through 3 (of 3 total)
sistemas_casinomnes (11/28/2014)
Hello, I need assistance with a query that show me a Products Tables and its models, 1 product could have 2 or more models
its slow with sql - use...
November 28, 2014 at 3:43 pm
if the cursor is not working then try the insensitive cursor. Without cursor - you mean something like this?
declare @dbname nvarchar(255)='', @found bit=1
while @found=1 begin
set @found=0
select top 1 @dbname=name,@found=1...
November 28, 2014 at 3:25 pm
declare @t table (x int)
insert into @t values (89),(329),(6329),(43299),(155329)
select x, power(10,len(x)) from @t
November 28, 2014 at 2:51 pm
Viewing 3 posts - 1 through 3 (of 3 total)