T

ALTER 테이블 추가,변경

ALTER [IGNORE] TABLE tbl_name alter_spec [, alter_spec ...]

alter_specification:

ADD [COLUMN] create_definition [FIRST | AFTER column_name ]

or ADD [COLUMN] (create_definition, create_definition,...)

or ADD INDEX [index_name] (index_col_name,...)

or ADD PRIMARY KEY (index_col_name,...)

or ADD UNIQUE [index_name] (index_col_name,...)

or ADD FULLTEXT [index_name] (index_col_name,...)

or ADD [CONSTRAINT symbol] FOREIGN KEY index_name (index_col_name,...) [reference_definition]

or ALTER [COLUMN] col_name {SET DEFAULT literal | DROP DEFAULT}

or CHANGE [COLUMN] old_col_name create_definition [FIRST | AFTER column_name]

or MODIFY [COLUMN] create_definition [FIRST | AFTER column_name]

or DROP [COLUMN] col_name

or DROP PRIMARY KEY

or DROP INDEX index_name

or DISABLE KEYS

or ENABLE KEYS

or RENAME [TO] new_tbl_name

or ORDER BY col

or table_options





% 필드 추가하기

mysql> alter table 테이블 add column 필드명 데이타형;

% 두개의 필드 추가하기

mysql> alter table 테이블 add column wdate,add column wtime time;

wdate date 날짜데이터 형
wtime time 시간데이터 형

% 한라인 입력
mysql>create table test(..............);

% 다중입력
mysql>create table test(
->num
->int,
->name
->varchar(10));
%필드 수정하기

alter table 테이블이름 rename 바꿀이름


% 필드 삭제

alter table 테이블명 drop 칼럼네임






-----------------------------------------------------------

새로운 필드 삽입시 이미 만들어진 필드 의 어느 부분에 넣으려고 합니다.

add lolumn 추가하려는 필드명 [first/after 필드명]이라구 적혀있더라구요..

alter table insa add column address char(20) first name;

이렇게 하니 에러가 나내요..어떻게 써야 하나요....

답변좀 부탁드립니다. 그럼감사..고맙습니다.


[답변]---------------------------------------------->

예로서 설명을 해드리지요...

------------------------------------
| filed | type | key | default |
------------------------------------
| year | int(11) | pri | 0 |
------------------------------------
| name |varchar(8)| pri | 0 |
------------------------------------


뭐 이런식으로 db 디자인이 되어있다면...

여기다가 first/alter 를 이용하여 어느앞..어느뒤에다 넣을 것인지 쳐주면 됩니다...


그러니까...이 테이블 이름이 님의 테이블처럼 insa 경우..

alter table [테이블이름] add [컬럼정의부분] first;

->alter table insa add class int not null first;


이렇게 쳐주시면 class라는 컬럼이 테이블 최상위로 올라간답니다.


또 alter table insa add class int not null after year;


이렇게 쳐주시면 year라는 컬럼뒤에 class라는 컬럼이 추가 되겠지요...^^

제가 투덜이 책을 안봐서 모르겠지만...

설명이 잘 되었으리라 생각이 듭니다...


마지막으로 설마하는 맘으로...

님의 경우에서 한번더 써드리지요...


님이 쓰신글 -> alter table insa add column address char(20) first name;


수정한 글 -> alter table insa add address char(20) first;

[테이블명] [컬럼명][컬럼타입]


이렇게 써주셔야...테이블 최상위로 올라갑니다..^^

만약 name이라는 컬럼 뒤에 넣고 싶다면...


-> alter table insa add address char(20) after name;<div class='small'>[이 게시물은 관리자님에 의해 2011-10-31 17:27:00 MySQL에서 이동 됨]</div>
|
댓글을 작성하시려면 로그인이 필요합니다.

프로그램

+
제목 글쓴이 날짜 조회
20년 전 조회 3,761
20년 전 조회 3,068
20년 전 조회 2,196
20년 전 조회 1만
20년 전 조회 2,331
20년 전 조회 1,686
20년 전 조회 2,757
20년 전 조회 2,363
20년 전 조회 1,770
20년 전 조회 1,568
20년 전 조회 1,997
20년 전 조회 1,793
20년 전 조회 1,827
20년 전 조회 2,433
20년 전 조회 1,643
20년 전 조회 1,585
20년 전 조회 1,727
20년 전 조회 2,812
20년 전 조회 1,874
20년 전 조회 1,944
20년 전 조회 2,070
20년 전 조회 1,893
20년 전 조회 1,975
20년 전 조회 1,790
20년 전 조회 2,162
20년 전 조회 1,883
20년 전 조회 2,660
20년 전 조회 2,349
20년 전 조회 2,643
20년 전 조회 1,582
20년 전 조회 1,679
20년 전 조회 2,247
20년 전 조회 1,716
20년 전 조회 3,851
20년 전 조회 2,729
20년 전 조회 2,161
20년 전 조회 2,859
20년 전 조회 1,823
20년 전 조회 1,701
20년 전 조회 2,655
20년 전 조회 1,563
20년 전 조회 1,823
20년 전 조회 3,316
20년 전 조회 1,970
20년 전 조회 1,697
20년 전 조회 5,029
20년 전 조회 4,657
20년 전 조회 3,596
20년 전 조회 3,869
20년 전 조회 7,150
20년 전 조회 3,626
20년 전 조회 2,705
20년 전 조회 2,703
20년 전 조회 7,268
20년 전 조회 4,680
20년 전 조회 1,980
20년 전 조회 3,336
20년 전 조회 2,027
20년 전 조회 1,640
20년 전 조회 2,390
20년 전 조회 1,870
20년 전 조회 1,537
20년 전 조회 1,892
20년 전 조회 3,066
20년 전 조회 2,526
20년 전 조회 1,818
20년 전 조회 1,744
20년 전 조회 4,071
20년 전 조회 3,008
20년 전 조회 3,730
20년 전 조회 3,517
21년 전 조회 3,832
21년 전 조회 8,640
21년 전 조회 2,674
21년 전 조회 3,830
21년 전 조회 3,285
21년 전 조회 2,687
21년 전 조회 2,755
21년 전 조회 2,665
21년 전 조회 2,948
21년 전 조회 3,118
21년 전 조회 5,384
21년 전 조회 3,986
21년 전 조회 5,032
21년 전 조회 6,288
21년 전 조회 7,422
21년 전 조회 1.9만
21년 전 조회 6,965
21년 전 조회 2,967
21년 전 조회 4,223
21년 전 조회 2,562
21년 전 조회 4,393
21년 전 조회 2,977
21년 전 조회 2,326
21년 전 조회 2,553
21년 전 조회 2,306
21년 전 조회 2,645
21년 전 조회 1,822
21년 전 조회 1,658
21년 전 조회 1,723