sql - Basic MySQL Select Query -


i need return full names of who's last name starts m-z. uppercase correct case.

select full_name customer lastname '[m-z]%' order lastname; 

there wrong syntax on third , cant figure out is.

you can regular expression.

select full_name customer lastname regexp '^[m-z]' order lastname;  

Popular posts from this blog

javascript - Js, document.getElementById("ID").innerHTML, error -

objective c - Is there a way in OCMockito to make stubs fail when an unknown method is called? -

jquery - jqGrid update specific column data with out refreshing the entire column? -