일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Kotlin
- 코틀린
- c#
- 리팩토링
- design pattern
- 마이바티스
- MySQL
- react
- Java
- 스프링
- git
- VOA
- DataGridView
- kubernetes
- AWS
- Winform
- springboot
- Spring Boot
- 쿠버네티스
- mybatis
- 파이썬
- 도커
- github
- Python
- 리액트
- 자바
- machine-learning
- docker
- Spring
- 스프링부트
- Today
- Total
목록Refactoring (3)
보뇨 다이어리
aws 를 수정해야하는 상황이 닥침쿼리가 너무 불필요하게 작성되어있어서 쿼리를 리팩토링했다조건절이 많이 들어간게 미적으로 별론데 현재 내가 할수있는선까지는 수정했다 :)Before123456789101112131415161718192021select c.id , c.come_leave , p.is_come , p.path , e.id as employee_id , e.image , d.company_id , o.account from ( select id, come as come_leave, employee_id, true as is_come from commute_record where come is not null and come_match is null union select id, `leave` ..
시리즈물이기 때문에 글은 생략Before 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 SELECT r.id , UNIX_TIMESTAMP(r.come) as come , UNIX_TIMESTAMP(r.leave) as `leave` , r.employee_id , r.division_id , r.manager_id , r.come_match , r.leave_match , r.pad , valid , e.wage , come_beacon , leave_beacon FROM commute_record as ..
이건 시리즈물이다그렇다정확히 코드를 리팩토링하는 과정인것이다하는이유는? 첫째는 내가 만지기 빡씨다는점이다...ㅂㄷㅂㄷ따로 설명은 넣지않을것이다 왜냐? 설명을 넣을 필요도 없이 간단하기 때문이지!Before12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 UPDATE commute_record SET pad = pad , `leave` = FROM_UNIXTIME(#{leave}) , leave_beacon = #{leave_beacon} , leave_beacon = null , come_beacon = #{come_beacon} , come_beacon = null , come_match = ..