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

c# - ODP.NET Oracle.ManagedDataAccess causes ORA-12537 network session end of file -

matlab - Compression and Decompression of ECG Signal using HUFFMAN ALGORITHM -

utf 8 - split utf-8 string into bytes in python -