I have a collection of entries in what I'm using as a perpetual events listing (no year data) in a table with 2 *text* (yes, text) fields structured like this:
-----EVENTS---------
date | event
------|---------------
03.24 | Sean's B-Day
07.04 | Independence Day
12.24 | Christmas
-------------------
What I want to do is display all events with the most current one first and the remainder after. The problem I have starts at the end of the year...the list will only go up to the '1224' entry based on my current SQL statments. The list I want to display should look like:
date | event
-----|---------------
1224 | Christmas
0324 | Sean's B-Day
0704 |
I just don't know the SQL (or term) for this sort of sorting. Can someone tell me what the SQL statement is for dealing with 'text' based fields of this nature and operation?
TIA
=============================
Sean Shrum
Shrum Consulting
C.A.T.S.: Consulting: Programming: R/C Soaring:
-----EVENTS---------
date | event
------|---------------
03.24 | Sean's B-Day
07.04 | Independence Day
12.24 | Christmas
-------------------
What I want to do is display all events with the most current one first and the remainder after. The problem I have starts at the end of the year...the list will only go up to the '1224' entry based on my current SQL statments. The list I want to display should look like:
date | event
-----|---------------
1224 | Christmas
0324 | Sean's B-Day
0704 |
I just don't know the SQL (or term) for this sort of sorting. Can someone tell me what the SQL statement is for dealing with 'text' based fields of this nature and operation?
TIA
=============================
Sean Shrum
Shrum Consulting
C.A.T.S.: Consulting: Programming: R/C Soaring: