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
- methodArea
- ALTER
- Eureka
- constantnumber
- reference
- 추상클래스
- override
- 생성자
- arguments
- hamobee
- 콘크리트클래스
- hashCode
- overload
- Vector
- Hashtable
- MSA
- abstractclass
- object
- start()
- 객체형변환
- eclipse
- concreteclass
- fuction
- run()
- class
- string
- super
- value
- garbagecollection
- Polymorphism
Archives
- Today
- Total
목록create (1)
뇌운동일지
![](http://i1.daumcdn.net/thumb/C150x150/?fname=https://blog.kakaocdn.net/dn/lUgpb/btqC4887v6l/WNoZOPa2P582saE8b8kJk1/img.png)
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