Contents

System/OS
2003.04.23 11:08

[sql] alter table 쿼리 예제

조회 수 12459 댓글 0
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄
자주 안쓰니 까먹지ㅡㅡ;;

Table 수정 관련 쿼리 형식
ALTER TABLE 테이블명 ADD '컬럼명' '컬럼타입';
ALTER TABLE 테이블명 CHANGE '변경할 컬럼명' '새로운 컬럼명' '컬럼 타입';
ALTER TABLE 테이블명 MODIFY '컬럼명' '컬럼 타입';

## MSSQL 에서는.. ##
ms-sqlserver에서 table 또는 필드 속성변경은 alter문을 사용하여 합니다. 

< 필드의 데이타타입 변경 >
alter table table명
alter column 필드명 datatype

ex) test table의 fld필드를 varchar -> int로 변경 
alter table test
alter column fld int

참고) 실제 입력 되어있는 자료중 int형식으로 변경할 수 없는 경우,
(''aaa''값과 같이)에는 sqlserver는 에러를 냅니다. 

< table에 새로운 필드 추가 >
alter table table명
add 필드명 datatype

ex) test table의 fld1을 varchar 데이타타입 8자리로 추가하는 경우 
alter table test 
add fld1 varchar(8)


?

  1. [sql] 간단한 SQL 문법 정리

    Date2003.04.23 CategoryDatabase Byhooni Views12554
    Read More
  2. [sql] insert into select 사용하기

    Date2013.04.23 CategorySystem/OS Byhooni Views27557
    Read More
  3. [sql] alter table 쿼리 예제

    Date2003.04.23 CategorySystem/OS Byhooni Views12459
    Read More
  4. [spring] 스프링 IoC/DI

    Date2013.04.23 CategoryDevelop Byhooni Views11350
    Read More
  5. [sh] 쉘스크립트 if 비교 연산

    Date2020.05.26 CategoryDevelop Byhooni Views60697
    Read More
  6. [sh] html 안에 있는 img 다운 받는 쉘 스크립트

    Date2020.05.26 CategoryDevelop Byhooni Views646
    Read More
  7. [security] 블럭 암호에 대해서..

    Date2013.04.23 CategoryAlgorithm Byhooni Views17125
    Read More
  8. [security] RSA 암호화 설명과 예..

    Date2013.04.23 CategoryAlgorithm Byhooni Views16620
    Read More
  9. [router] 시스코 라우터 명령어 모드..

    Date2013.04.23 CategorySystem/OS Byhooni Views12949
    Read More
  10. [router] 설정과 기본 명령어들 모음

    Date2013.04.23 CategorySystem/OS Byhooni Views15672
    Read More
  11. [router] 라우팅 프로토콜 BGP (간단한 세팅)

    Date2013.04.23 CategorySystem/OS Byhooni Views10954
    Read More
  12. [python][django] request.cookie 읽어오기 ㅋㅋㅋ (쓰기)

    Date2019.12.06 CategoryDevelop Byhooni Views1697
    Read More
Board Pagination Prev 1 ... 9 10 11 12 13 14 15 16 17 18 ... 98 Next
/ 98