Patients 테이블에서 conditions 가 'DIAB1'로 시작하는 모든 레코드를 반환하도록 SQL을 작성하는 문제이다. 문제를 보는 순간 LIKE 연산자를 사용하면 쉽게 해결할 수 있을것 같다고 생각했다. #wrong answer -> 틀린이유는 SDIAB100도 레코드로 반환이 된다. select * from Patients where conditions like '%DIAB1%' #correct answer -> DIAB1로 시작하거나 (space)DIAB1 인 결과만 반환하도록 수정한다. select * from Patients where conditions like 'DIAB1%' or conditions like '% DIAB1%' #other solution SELECT * FROM ..