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 |
29 | 30 | 31 |
Tags
- 컴포넌트
- Spring
- 데이터베이스
- 자바
- restapi
- javascript
- crud
- GIT
- mssql
- 쿼리
- DATABASE
- 개발
- React
- 개발공부
- Intellij
- table
- 스프링부트
- 자바스크립트
- Vue
- 스프링
- springboot
- java
- jdk
- component
- sql
- 리액트
- 보안취약점
- JS
- reactjs
- EXTJS
Archives
- Today
- Total
목록데이터베이스 (5)
준준의 기록일지
[sql쿼리] create, select, alter, insert
select * from sample_info create table sampleOtp_info ( otp_id int not null, otp_user varchar(10) not null ) --테이블 삭제 drop table [테이블 명] select * from sampleOtp_info alter table sample_info add req_desc varchar(50) insert into sample_info values (4, '안녕하세요. Test 입니다.','컴퓨터 고장으로 인한 신청', '변경사유 없음'); alter table sample_info add update_desc varchar(50) select * from sample_info - 컬럼 삭제 alter table [..
Database
2020. 8. 13. 17:30