Contents

System/OS
2003.04.23 11:08

[sql] alter table 쿼리 예제

조회 수 12523 댓글 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. [router] 시스코 라우터 명령어 모드..

    Date2013.04.23 CategorySystem/OS Byhooni Views13009
    Read More
  2. [security] RSA 암호화 설명과 예..

    Date2013.04.23 CategoryAlgorithm Byhooni Views16691
    Read More
  3. [security] 블럭 암호에 대해서..

    Date2013.04.23 CategoryAlgorithm Byhooni Views17189
    Read More
  4. [sh] html 안에 있는 img 다운 받는 쉘 스크립트

    Date2020.05.26 CategoryDevelop Byhooni Views763
    Read More
  5. [sh] 쉘스크립트 if 비교 연산

    Date2020.05.26 CategoryDevelop Byhooni Views60985
    Read More
  6. [spring] 스프링 IoC/DI

    Date2013.04.23 CategoryDevelop Byhooni Views11409
    Read More
  7. [sql] alter table 쿼리 예제

    Date2003.04.23 CategorySystem/OS Byhooni Views12523
    Read More
  8. [sql] insert into select 사용하기

    Date2013.04.23 CategorySystem/OS Byhooni Views27639
    Read More
  9. [sql] 간단한 SQL 문법 정리

    Date2003.04.23 CategoryDatabase Byhooni Views12626
    Read More
  10. [sql] 간단한 통계 서브쿼리 예제..

    Date2013.04.23 CategoryDatabase Byhooni Views15171
    Read More
  11. [sql] 내 방명록 답글 찾는 쿼리문.. (JOIN 구문)

    Date2003.04.23 CategorySystem/OS Byhooni Views12931
    Read More
  12. [sql] 조회구문(select)에서 중복 데이터를 한 번만 출력 (distinct)

    Date2013.04.23 CategorySystem/OS Byhooni Views34066
    Read More
Board Pagination Prev 1 ... 80 81 82 83 84 85 86 87 88 89 ... 98 Next
/ 98