반응형
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
- sass
- TypeScript
- storybook
- express
- jsx
- webpack
- event
- mapGetters
- Vue.js
- scss
- 댓글달기
- v-html
- ES6
- Wecode
- nodejs
- 리액트
- vuex
- input
- JavaScript
- 자바스크립트
- Vue
- Vue transition
- MySQL
- react
- 쉬운설명
- HOC
- 자료구조
- State
- App.vue
- CSS
Archives
- Today
- Total
목록query (1)
익명의 개발노트
[Sequelize] CRUD, 원하는 컬럼만 출력, 컬럼 합치기
1. 대상하나만 조회하기 select * from table where id='202'; models.table명.findOne({where:{id:202}}) 2. 삽입하기 insert into table(컬럼명) values (넣고자하는 값); models.table명.create(넣고자하는값) 3. 삭제하기 delete from table명 where id ='202'; models.table명.destroy({where: {id: '202'}}) 4. 수정하기 update table명 set 컬럼명 = 변경될 값 where id='202'; //where 절은 조건넣어주면됨 models.table명.update(변화시킬값,{where: {id: '202'}}) 5. 전체 다 조회하기 select ..
코딩일기/TIL
2019. 11. 14. 00:42