전체 글 썸네일형 리스트형 스파르타코딩클럽 내일배움캠프 11주차 4일 [조건문 Where] 1. select *from orders o WHERE payment_method='kakaopay' 2. select *from point_users WHERE point >5000 3. select *from orders o WHERE course_title ='앱개발 종합반' and payment_method = 'CARD' 4. select *from orders o WHERE updated_at BETWEEN '2020-07-13' and '2020-07-15' 5. week의 1또는 3인 값만 출력 select *from checkins c WHERE week in (1,3) 6. daum.net 앞에 무슨 문자가 들어가든 상관없고 daum.net 들어간 이메일 모두 찾아.. 더보기 소수 찾기 class Solution { public int solution(int n) { int answer = 0; for(int i=2;i 더보기 스파르타코딩클럽 내일배움캠프 11주차 3일 스파르타코딩클럽의 sql 강의를 지급해줘서 듣기 시작했다. DB에서 CRUD에서 Read만 집중해서 하기 때문에 Read관련 sql 쿼리문을 배울것이라고 했다. 1주차 select, where 2주차 Group by, Order by 3주차 Join 4주차 Subquery select * from Table Table에 있는 모든 정보를 가져와라 * 대신 필드를 적어주면 필드에 있는 내용만 가져옴 더보기 다리를지나는트럭 [35.7 코드] import java.util.*; class Solution { static public int solution(int bridge_length, int weight, int[] truck_weights) { int answer = 0; Queue queue= new LinkedList(); int cnt=0; int sum=0; int truck=0; for(int i=0;i= sum + truck) { sum += truck; queue.add(sum); cnt++; break; } } // 다리가 꽉찬 트럭 else if(queue.size() == bridge_length) { sum-=queue.poll(); } // 다리가 이동중인 트럭 else { if(weight >= .. 더보기 부족한 금액 계산하기 [78점 코드] class Solution { public long solution(int price, int money, int count) { long answer = -1; int sum =0; for(int i=1;i 더보기 콜라츠 추측 class Solution { public int solution(int num) { int answer = 0; int cnt = 0; while(true) { if(cnt == 500) { answer = -1; break; } if(num ==1) { answer = cnt; break; } if(num %2 ==0) { num = num/2; } else if(num %2 ==1) { num = num*3 +1; } cnt++; } return answer; } } 베스트코드 프로그래머스 출처 class Collatz { public int collatz(int num) { long n = (long)num; for(int i =0; i 더보기 스파르타코딩클럽 내일배움캠프 11주차 2일 [OnetoMany ManytoOne문제] 1. 처음에 Onetomany manytoOne 를 각각 memo와 Comments에 각각 넣었는데 안되서 comments의 manytoone으로 단방향 참조를 해서 해결했음 2. 그래도 one to many manytoone을 해결해보자 해서 계속 문제를 해결해보려고했지만 순환참조 문제가 발생 [순환참조문제] 해결방법1 [Memo Entity] @JsonManagedReference @OneToMany(fetch =FetchType.LAZY,mappedBy = "memo",cascade = CascadeType.ALL) // @JoinColumn(name = "Comment_id", nullable = false) private List comments = n.. 더보기 스파르타코딩클럽 내일배움캠프 11주차 1일 숙련과제하면서 문제점이 있었던것을 정리해보았다. [Controller] @RestController @RequiredArgsConstructor //private final 선언해줘야 이것을 선언해줘야했다. [Dto] 불변객체를 보장해야한다. [Entity] 연관관계 Comments @ManyToOne @JoinColumn(name = "memo_id", nullable = false) private Memo memo; public Comments(CommentRequestDto commentRequestDto,Memo memo) { this.username = commentRequestDto.getUserName(); this.contents = commentRequestDto.getContents().. 더보기 이전 1 ··· 8 9 10 11 12 13 14 ··· 22 다음