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 |
Tags
- JS
- component
- table
- sql
- 개발
- jdk
- mssql
- Intellij
- java
- Spring
- GIT
- Vue
- crud
- 리액트
- EXTJS
- 데이터베이스
- 스프링
- restapi
- React
- 컴포넌트
- 자바
- 쿼리
- 개발공부
- javascript
- reactjs
- 자바스크립트
- DATABASE
- springboot
- 스프링부트
- 보안취약점
Archives
- Today
- Total
목록alter문 (1)
준준의 기록일지
[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