Created
May 29, 2016 22:39
-
-
Save o-shabashov/da96503a9bb0b1e2be138a716986321b to your computer and use it in GitHub Desktop.
SQL select where name = "A..E"
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
select * from brand | |
where substr(brand_name, 1, 1) >= 'a' and substr(brand_name, 1, 1) <= 'e' | |
order by brand_name ASC |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment