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,809
20년 전 조회 3,099
20년 전 조회 2,237
20년 전 조회 1만
20년 전 조회 2,379
20년 전 조회 1,730
20년 전 조회 2,801
20년 전 조회 2,405
20년 전 조회 1,808
20년 전 조회 1,612
20년 전 조회 2,044
20년 전 조회 1,829
20년 전 조회 1,867
20년 전 조회 2,467
20년 전 조회 1,677
20년 전 조회 1,623
20년 전 조회 1,763
20년 전 조회 2,851
20년 전 조회 1,907
20년 전 조회 1,976
20년 전 조회 2,106
20년 전 조회 1,932
20년 전 조회 2,014
20년 전 조회 1,829
20년 전 조회 2,200
20년 전 조회 1,925
20년 전 조회 2,694
20년 전 조회 2,388
20년 전 조회 2,678
20년 전 조회 1,614
20년 전 조회 1,709
20년 전 조회 2,287
20년 전 조회 1,754
20년 전 조회 3,880
20년 전 조회 2,764
20년 전 조회 2,205
20년 전 조회 2,895
20년 전 조회 1,861
20년 전 조회 1,738
20년 전 조회 2,694
20년 전 조회 1,598
20년 전 조회 1,853
20년 전 조회 3,357
20년 전 조회 2,016
20년 전 조회 1,732
20년 전 조회 5,070
20년 전 조회 4,693
20년 전 조회 3,631
20년 전 조회 3,906
20년 전 조회 7,184
20년 전 조회 3,664
20년 전 조회 2,737
20년 전 조회 2,743
20년 전 조회 7,306
20년 전 조회 4,721
20년 전 조회 2,014
20년 전 조회 3,368
20년 전 조회 2,071
20년 전 조회 1,676
20년 전 조회 2,427
20년 전 조회 1,905
20년 전 조회 1,574
20년 전 조회 1,925
20년 전 조회 3,102
20년 전 조회 2,572
20년 전 조회 1,851
20년 전 조회 1,782
20년 전 조회 4,107
20년 전 조회 3,051
20년 전 조회 3,771
20년 전 조회 3,561
21년 전 조회 3,876
21년 전 조회 8,687
21년 전 조회 2,717
21년 전 조회 3,873
21년 전 조회 3,327
21년 전 조회 2,723
21년 전 조회 2,790
21년 전 조회 2,700
21년 전 조회 2,981
21년 전 조회 3,156
21년 전 조회 5,427
21년 전 조회 4,022
21년 전 조회 5,072
21년 전 조회 6,324
21년 전 조회 7,451
21년 전 조회 1.9만
21년 전 조회 7,004
21년 전 조회 2,996
21년 전 조회 4,266
21년 전 조회 2,602
21년 전 조회 4,434
21년 전 조회 3,012
21년 전 조회 2,366
21년 전 조회 2,592
21년 전 조회 2,352
21년 전 조회 2,680
21년 전 조회 1,862
21년 전 조회 1,688
21년 전 조회 1,763