전체 글26 Select_01 기초 공부 Selelct의 구문형식 Select 열 이름 From 테이블 이름 Where 조건 * 은 "모든 것"을 의미 Select * From 테이블 이름; -> 테이블 이름 에서 모든 열의 내용을 가져오라는 의미 w3schools 에 SQL 래퍼런스를 참고 했습니다. https://www.w3schools.com/sql/sql_ref_keywords.asp 1. Select * From Customers; -> Customers 테이블에서 모든 열을 선택 2. Select CustomerName, City From Customers; -> Customers 테이블에서 CustomerName 및 City 열을 선택 [ Select DISTINCT 명령은 결과 집합에서 고유한(다른) 값만 변환한다.] 3. Sel.. 2022. 3. 20. Optional int parameter ' ' is present but cannot be translated into a null value due to being declared as a primitive type. 초보 개발자의 오류일지 01 상황 게시글 상세보기로 들어가면 500에러 발생 Error 500 Optional int parameter 'n_no' is present but cannot be translated into a null value due to being declared as a primitive type. Consider declaring it as object wrapper for the corresponding primitive type. 번역기를 돌려본 결과 선택적 int 매개 변수 'n_no'이(가) 있지만 선언되었으므로 null 값으로 변환할 수 없습니다. 해당 기본 유형에 대한 객체 래퍼로 선언하십시오. @GetMapping(value = " ") public String not.. 2022. 3. 17. 이전 1 ··· 4 5 6 7 다음