Microsoft
Software
Hardware
Network
Question : SQL Substr Order
I have a select statement that uses substr
select distinct substr(value, 1, 1) from table
This query returns letters (i.,e, H, O, B, D).
I need those letters to be sorted alphabetically (B, D, H, O).
How can I do this with this query. I tried adding "sort by value" and "order by value". I got an SQL error for both.
Using Oracle 10g.
Answer : SQL Substr Order
select distinct substr(value, 1, 1) from table
order by 1;
or give it an alias
select distinct substr(value, 1, 1) letter from table
order by letter;
Random Solutions
How to stablish a proper setup in MS Outlook 2003 encrypting mails
Append extra data to the right of common data between files
HOW TO: remove the Anonymous User from the Everyone Group....
Identifying a cell in a declaration as having any value that falls within a specified range
OCS 2007 R2 and Cisco call manager
HTTP Error 404.3 on IIS 7.0
how to re-assign a class member in c++ (override its value by pointer)
Secondary namespace in WSDL
Are Mac's easier to support than PC's? Why or why not?
Multicast session fails to open on secondary site server.