mysql 도와주세요!
본문
select firstname from employees where firstname regexp binary '^.';
'Foon Yue' 처럼 두 개의 대문자를 포함하는 데이터만 표시하고 싶어요ㅠㅠ
저기서 어떻게 고쳐야 할까요?
!-->답변 2
select firstname from employees where firstname like is '%^.%';
이렇게 하시면 원하시는 데이터를 가져오실수 있습니다.
select firstname from employees where firstname regexp binary '[A-Z]+.*[A-Z]+';
답변을 작성하시기 전에 로그인 해주세요.