Q&A

  • MDB 에서 SQL 문장으로 Table 이름 변경?
MDB 안에 AAA 라는 테이블이 있을 경우 BBB 라는 테이블 이름으로 변경하고자 할때 SQL문으로 변경이 가능한지 알고 싶습니다. 변경이 가능하다면 SQl 문을 좀 갈켜 주십시요.
2  COMMENTS
  • Profile
    민수 2004.01.19 19:43
    테이블 변경에 관한 쿼리문입니다.

    ALTER TABLE aaa RENAME TO bbb ;

  • Profile
    김상균 2004.01.19 20:02
        with main.temp_data do
        begin
            if not main.db_connect.Connected then main.db_connect.Connected := true;
            if active then close;
            sql.clear;
            sql.add('ALTER TABLE go RENAME TO go_go');
            try
                Execsql(sql);
            except showmessage('바꾸기 실패');
            end;

        end;