Contents

System/OS
2003.04.23 11:08

[sql] alter table 쿼리 예제

Views 12525 Comment 0
?

Shortcut

PrevPrev Article

NextNext Article

Larger Font Smaller Font Up Down Go comment Print
?

Shortcut

PrevPrev Article

NextNext Article

Larger Font Smaller Font Up Down Go comment Print
자주 안쓰니 까먹지ㅡㅡ;;

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)


?

List of Articles
No. Category Subject Author Date Views
166 System/OS [linux] APM(apache, php, mysql) + gd 설치순서.. hooni 2003.04.23 18946
165 System/OS [mac] 컨텍스트(Context) 메뉴 "다음으로 열기" 내용 정리 hooni 2013.07.10 18905
164 System/OS [linux] 패킷의 소스 주소 바꾸기 hooni 2003.04.23 18868
163 System/OS [linux] CentOS 터미널 언어 설정(한글/영어) hooni 2013.12.22 18631
162 System/OS 해커스랩 깨기.. 후후.. ㅋㅋ file hooni 2013.04.23 18527
161 System/OS NAT와 DHCP에 대한 간단한 설명 hooni 2013.04.23 18407
160 System/OS [windows] 인터넷 익스플로러(IE) 도구모음 표시줄에 아이콘 추가 file hooni 2013.04.23 18291
159 System/OS [bios] 시스템 부팅 도중 발생하는 비프음 hooni 2003.04.23 18254
158 System/OS [windows] 종료, 재시작, 로그아웃 아이콘 만들기 hooni 2013.04.23 18208
157 System/OS [web] 웹서비스 취약점 자료.. (논문첨부) file hooni 2003.04.23 18063
156 System/OS [linux] 리눅스,유닉스 /proc/stat 파일 보는 법 hooni 2013.04.23 18029
155 System/OS [linux] 커널 컴파일, 설정 hooni 2003.04.23 17919
Board Pagination Prev 1 2 3 4 5 6 7 8 9 10 ... 17 Next
/ 17