일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
- mysql 계정삭제
- 렉스
- lex compiler
- vim 자동정렬
- alter 문법
- mysql 갱신
- linux log
- mysql update
- db 덤프
- x윈도우
- x-window
- lex 컴파일
- 자동정렬
- db덤프
- 렉스 컴파일
- db 백업
- mysql 권한부여
- mysql 계정생성
- 리눅스 로그 삭제
- 리눅스 로그
- alter 명령어
- 리눅스
- mysql alter
- 데이터베이스 갱신
- vim 정렬
- 컴파일러 입문
- 리눅스 gui
- 컴파일 설치
- 데이터 갱신
- 로그 삭제
- Today
- Total
It's under your control.
ALTER TABLE Statement Use the ALTER TABLE statement to add, modify, or drop columns: ALTER TABLE table ADD (column datatype [DEFAULT expr] [, column datatype]...); ALTER TABLE table MODIFY (column datatype [DEFAULT expr] [, column datatype]...); ALTER TABLE table DROP (column); SET UNUSED Option • You use the SET UNUSED option to mark one or more columns as unused. • You use the DROP UNUSED COLU..
What Is a View? You can present logical subsets or combinations of data by creating views of tables. A view is a logical table based on a table or another view. A view contains no data of its own but is like a window through which data from tables can be viewed or changed. The tables on which a view is based are called base tables. The view is stored as a SELECT statement in the data dictionary...