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 |
Tags
- Eureka
- abstractclass
- Vector
- 생성자
- override
- start()
- constantnumber
- 객체형변환
- 추상클래스
- arguments
- methodArea
- super
- hamobee
- run()
- overload
- reference
- value
- Hashtable
- object
- fuction
- class
- string
- Polymorphism
- hashCode
- concreteclass
- ALTER
- 콘크리트클래스
- eclipse
- MSA
- garbagecollection
Archives
- Today
- Total
목록ALTER (1)
뇌운동일지
기초 SQL (MySQL) - 1. 테이블 생성
SQL : structure query language : 구조 질의 문 SQL -> 디비에서 컴파일 -> 실행 -> 결과를 보여준다 dbms(dbserver + client tool) > db들 > tables > 레코드s > 컬럼s > 도메인s (데이타) 레코드 - 한줄 1. 테이블 생성 create table 테이블명 ( 컬럼명 데이타형 [제약조건들] , 컬럼명2 데이타형 [제약조건들] , 컬럼명3 데이타형 [제약조건들] , 컬럼명4 데이타형 [제약조건들] ) ; // 제약조건은 안붙을 수도 있고, 여러개 붙을 수도 있다. create table extable ( idx int not null auto_increment primary key, name varchar(20) not null, phon..
DB/MySQL
2020. 4. 1. 10:31