반응형 SQL ORDER BY1 MySQL - DML 💡 다양한 조건 - where like like는 특정 문자가 포함된 문자열을 찾고 싶을 때 사용하는 명령어이다. --> 정수형을 찾으려고 하면 안된다. ◾ %문자열 : 문자열로 끝나는 값 조회 ◾ 문자열% : 문자열로 시작하는 값 조회 ◾ %문자열% : 문자열이 포함된 값 조회 📃 like select * from book where title like '%왕자'; select * from book where title like '어린%'; select * from book where title like '%린왕%'; 💡 order by select * from score order by math desc; select * from score order by math asc; 💡 insert문 ◾ 데이.. 2022. 7. 14. 이전 1 다음 728x90 반응형