##### 문제 1Q. 주민번호 입력하고 성별과 나이 구하기1. Interfacepublic interface InterInterface { String getName(); String getTel(); String getJumin(); String getAddress(); //나이와 성별 추가사항 int getAge(); String getSb(); 2. Repository@Query(value = "select id, name, tel, address, hobby, " + "TO_NUMBER(TO_CHAR(SYSDATE, 'YYYY'))-TO_NUMBER( " + "CASE WHEN SUBSTR(jumin,8,1) ..