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,807
20년 전 조회 3,096
20년 전 조회 2,234
20년 전 조회 1만
20년 전 조회 2,378
20년 전 조회 1,729
20년 전 조회 2,798
20년 전 조회 2,403
20년 전 조회 1,805
20년 전 조회 1,610
20년 전 조회 2,042
20년 전 조회 1,827
20년 전 조회 1,866
20년 전 조회 2,466
20년 전 조회 1,675
20년 전 조회 1,620
20년 전 조회 1,761
20년 전 조회 2,849
20년 전 조회 1,905
20년 전 조회 1,975
20년 전 조회 2,103
20년 전 조회 1,929
20년 전 조회 2,012
20년 전 조회 1,825
20년 전 조회 2,197
20년 전 조회 1,924
20년 전 조회 2,692
20년 전 조회 2,384
20년 전 조회 2,677
20년 전 조회 1,613
20년 전 조회 1,708
20년 전 조회 2,286
20년 전 조회 1,751
20년 전 조회 3,876
20년 전 조회 2,762
20년 전 조회 2,204
20년 전 조회 2,893
20년 전 조회 1,857
20년 전 조회 1,736
20년 전 조회 2,692
20년 전 조회 1,597
20년 전 조회 1,852
20년 전 조회 3,355
20년 전 조회 2,013
20년 전 조회 1,730
20년 전 조회 5,068
20년 전 조회 4,691
20년 전 조회 3,630
20년 전 조회 3,905
20년 전 조회 7,182
20년 전 조회 3,661
20년 전 조회 2,736
20년 전 조회 2,741
20년 전 조회 7,304
20년 전 조회 4,719
20년 전 조회 2,011
20년 전 조회 3,366
20년 전 조회 2,069
20년 전 조회 1,674
20년 전 조회 2,425
20년 전 조회 1,903
20년 전 조회 1,573
20년 전 조회 1,924
20년 전 조회 3,099
20년 전 조회 2,571
20년 전 조회 1,850
20년 전 조회 1,780
20년 전 조회 4,106
20년 전 조회 3,049
20년 전 조회 3,769
20년 전 조회 3,558
21년 전 조회 3,874
21년 전 조회 8,685
21년 전 조회 2,715
21년 전 조회 3,871
21년 전 조회 3,324
21년 전 조회 2,721
21년 전 조회 2,787
21년 전 조회 2,697
21년 전 조회 2,979
21년 전 조회 3,155
21년 전 조회 5,423
21년 전 조회 4,020
21년 전 조회 5,072
21년 전 조회 6,322
21년 전 조회 7,450
21년 전 조회 1.9만
21년 전 조회 7,001
21년 전 조회 2,995
21년 전 조회 4,263
21년 전 조회 2,601
21년 전 조회 4,433
21년 전 조회 3,009
21년 전 조회 2,365
21년 전 조회 2,589
21년 전 조회 2,351
21년 전 조회 2,679
21년 전 조회 1,859
21년 전 조회 1,685
21년 전 조회 1,758