Forum Replies Created

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

  • RE: BETWEEN keyword in SQL

    Hi All,

    drop table #temp

    create table #temp

    (

                fldID int,

  • RE: doubt in sorting

    Hi Mega,

    Please check out this query...i think it will work

    drop table #temp

    create table #temp

    (

     surveyno  int,

     subdivno  varchar(10)

    )

    INSERT INTO #temp values(1, '1')

    INSERT INTO #temp values(3, '3B')

    INSERT INTO #temp values(2, '2')

    INSERT...

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