Forum Replies Created

Viewing 3 posts - 1 through 3 (of 3 total)

  • RE: Query to show table Products with its modes

    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...

  • RE: tsql with out using cursors

    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...

  • RE: Rounding UP values

    declare @t table (x int)

    insert into @t values (89),(329),(6329),(43299),(155329)

    select x, power(10,len(x)) from @t

Viewing 3 posts - 1 through 3 (of 3 total)