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,817
20년 전 조회 3,113
20년 전 조회 2,248
20년 전 조회 1만
20년 전 조회 2,388
20년 전 조회 1,735
20년 전 조회 2,808
20년 전 조회 2,409
20년 전 조회 1,815
20년 전 조회 1,623
20년 전 조회 2,049
20년 전 조회 1,837
20년 전 조회 1,880
20년 전 조회 2,480
20년 전 조회 1,689
20년 전 조회 1,631
20년 전 조회 1,772
20년 전 조회 2,860
20년 전 조회 1,920
20년 전 조회 1,987
20년 전 조회 2,116
20년 전 조회 1,945
20년 전 조회 2,021
20년 전 조회 1,841
20년 전 조회 2,209
20년 전 조회 1,934
20년 전 조회 2,703
20년 전 조회 2,404
20년 전 조회 2,692
20년 전 조회 1,622
20년 전 조회 1,724
20년 전 조회 2,296
20년 전 조회 1,767
20년 전 조회 3,889
20년 전 조회 2,776
20년 전 조회 2,217
20년 전 조회 2,902
20년 전 조회 1,876
20년 전 조회 1,751
20년 전 조회 2,702
20년 전 조회 1,607
20년 전 조회 1,868
20년 전 조회 3,372
20년 전 조회 2,020
20년 전 조회 1,745
20년 전 조회 5,081
20년 전 조회 4,700
20년 전 조회 3,639
20년 전 조회 3,918
20년 전 조회 7,196
20년 전 조회 3,673
20년 전 조회 2,750
20년 전 조회 2,755
20년 전 조회 7,316
20년 전 조회 4,734
20년 전 조회 2,024
20년 전 조회 3,378
20년 전 조회 2,078
20년 전 조회 1,684
20년 전 조회 2,439
20년 전 조회 1,915
20년 전 조회 1,585
20년 전 조회 1,937
20년 전 조회 3,114
20년 전 조회 2,585
20년 전 조회 1,862
20년 전 조회 1,796
20년 전 조회 4,119
20년 전 조회 3,059
20년 전 조회 3,778
20년 전 조회 3,569
21년 전 조회 3,883
21년 전 조회 8,687
21년 전 조회 2,724
21년 전 조회 3,879
21년 전 조회 3,335
21년 전 조회 2,731
21년 전 조회 2,800
21년 전 조회 2,709
21년 전 조회 2,989
21년 전 조회 3,168
21년 전 조회 5,430
21년 전 조회 4,034
21년 전 조회 5,085
21년 전 조회 6,337
21년 전 조회 7,465
21년 전 조회 1.9만
21년 전 조회 7,020
21년 전 조회 3,010
21년 전 조회 4,274
21년 전 조회 2,613
21년 전 조회 4,446
21년 전 조회 3,030
21년 전 조회 2,377
21년 전 조회 2,602
21년 전 조회 2,359
21년 전 조회 2,688
21년 전 조회 1,871
21년 전 조회 1,697
21년 전 조회 1,773