Notice
Recent Posts
Recent Comments
Link
| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 1 | ||||||
| 2 | 3 | 4 | 5 | 6 | 7 | 8 |
| 9 | 10 | 11 | 12 | 13 | 14 | 15 |
| 16 | 17 | 18 | 19 | 20 | 21 | 22 |
| 23 | 24 | 25 | 26 | 27 | 28 | 29 |
| 30 |
Tags
- 윈도우
- String Function and Operators
- Data and Time Functions
- Sring Functions and Operators
- MySQL
- Tibero
- 오라클
- 방화벽
- SVN
- Oracle
- 전자정부 표준프레임워크
- Date and Time Function
- 전자정부표준프레임워크
- HTTP
- String Functions and Date Operators
- 티베로
- Date and Time Functions
- String Functions and Operators
Archives
- Today
- Total
웹이야기
[MySQL] 칼럼 추가 / 삭제 본문
MySQL 칼럼 추가
|
1
|
ALTER TABLE 테이블 명 ADD COLUMN 칼럼명 CHAR(1) COMMENT '코멘트' ;
|
cs |
MySQL 칼럼 삭제
|
1
|
ALTER TABLE 테이블 명 DROP COLUMN 칼럼명;
|
cs |
'D > MySQL' 카테고리의 다른 글
| [MySQL]WEIGHT_STRING() (0) | 2020.06.18 |
|---|---|
| [MySQL]UPPER() (0) | 2020.06.18 |
| [MySQL]UNHEX() (0) | 2020.06.18 |
| [MySQL]UCASE() (0) | 2020.06.18 |
| [MySQL]TRIM() (0) | 2020.06.18 |
Comments