System/OS
2003.04.23 11:08

[sql] alter table 쿼리 예제

조회 수 12517 추천 수 0 댓글 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. [unix] 유닉스 csh에서 환경변수 등록

    Date2003.04.23 CategorySystem/OS Byhooni Views11751
    Read More
  2. [unix] SUN Solaris 싱글모드.. ㅡ,.ㅡ;

    Date2003.04.23 CategorySystem/OS Byhooni Views12049
    Read More
  3. [unix] AIX쉘 초기 파일 (.cshrc)

    Date2013.04.23 CategorySystem/OS Byhooni Views10345
    Read More
  4. [switch] 시스코 카탈리스트(Cisco Catalyst) 기본 설정

    Date2013.04.23 CategorySystem/OS Byhooni Views17567
    Read More
  5. [switch] 시스코 스위치 관리자 암호 초기화 방법

    Date2013.04.23 CategorySystem/OS Byhooni Views17273
    Read More
  6. [svn] 하나의 SVN에서 멀티 저장소 (One svnserve, multiple repositories)

    Date2015.01.02 CategorySystem/OS Byhooni Views1782
    Read More
  7. [svn] SVN trunk 변경사항 되돌리기 (SVN Rollback)

    Date2014.11.27 CategorySystem/OS Byhooni Views1696
    Read More
  8. [svn] Can't convert string from native encoding to 'UTF-8' 메시지가 나오는 경우

    Date2014.12.18 CategorySystem/OS Byhooni Views1148
    Read More
  9. [sql] 중복데이터 삭제 쿼리

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

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

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

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

    Date2003.04.23 CategorySystem/OS Byhooni Views12517
    Read More
  14. [router] 시스코 라우터 명령어 모드..

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

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

    Date2013.04.23 CategorySystem/OS Byhooni Views11001
    Read More
Board Pagination Prev 1 2 3 4 5 ... 13 Next
/ 13