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
- 기록
- 앱
- 안드로이드
- streamlit
- 자바
- 스프링
- 프로젝트
- 자바스크립트
- 코틀린
- 오라클
- 제이쿼리
- Spring
- javascript
- 판다스
- Python
- 파이썬
- Android
- gcp
- HTML
- 어플
- mlb stats api
- CSS
- kotlin
- 배포
- java
- JQuery
- 시간
- oracle
- pandas
- MLB
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