我只想从UPPER N开始选择名字,没有低等。
我尝试:
SELECT * FROM states WHERE name LIKE N% ORDER BY id ASC;
SELECT * FROM states WHERE name RLIKE ^N ORDER BY id ASC;
I also tried similar to and regex but the results are always upper and lower N names; what to do?