Notice
Recent Posts
Recent Comments
Link
250x250
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- JQuery
- pandas
- 판다스
- streamlit
- 스프링
- javascript
- mlb stats api
- kotlin
- CSS
- 오라클
- 제이쿼리
- java
- Python
- 자바
- 코틀린
- 앱
- 안드로이드
- 자바스크립트
- 파이썬
- Android
- gcp
- 배포
- oracle
- 시간
- 기록
- Spring
- MLB
- HTML
- 프로젝트
- 어플
Archives
- Today
- Total
목록db (1)
develope_kkyu
[ORACLE] C, R, U, D 기초
-- 테이블 생성 create table student( name varchar2(20) not null, gender varchar2(1) not null, school_name varchar2(20) not null, grade_num varchar2(1) not null, mobile varchar2(8), math_score number(3), english_score number(3), korean_score number(3) ); desc student; --C(데이터생성/추가)insert --insert into 테이블명 values (값1, 값2, ... ,값n); --insert into 테이블명(칼럼명1, 칼럼명2, ... ,칼럼명n); values (값1, 값2, ... ,값n); i..
SQL
2022. 12. 23. 12:39