Q&A

  • SQL 자동index만들수 있나요?
오락클은 아니구요

select 인텍스키, 현재까지팔린강아지  from table

하잖아요...
            1        개똥이
            2        강아지
            3        둘둘이
            4        개똥이

이렇게 할수 있나요...자동 인덱스 값을 구하고 싶은데

잘 안되네요....

템프에 넣고 가지고 올때 될꺼 같은데....아.....
2  COMMENTS
  • Profile
    nilriri™ 2002.05.11 03:25
    오라클엔 rownum이란 넘이 있어서 ..이모저모로 유용하게 쓰이는데..
    ms_sql엔..ㅡㅡ;

    이런 방법은 어떨까요?
    CREATE PROCEDURE sp_test
    AS

    create table #test(
    idx numeric identity primary key,
    col1 varchar(10),
    col2 varchar(10),
    col3 varchar(10))

    insert into #test(col1,col2,col3)
    SELECT col1,col2,col3
    from test
    where col1=@arg1
    order by col2, col1 desc;

    select idx, col1, col2, col3
    from #test
    order by idx;

    drop table #test;

    GO

    그럼..

  • Profile
    김진석 2002.05.11 03:27
    먼저 감사합니다.....

    db가 sybase 걸랑요....

    그 방법해봤는데....identity 가 지원 안되더라구요...

    암튼감사합니다....