I have written some ASP that selects all records from a db and orders by some fields. The problem is that some of author_1 fields are NULL. So when I display the results, it displays A-N, the author_1 = NULL records, then O-Z. I want it to display the author = NULL records first then A-Z. Here's my select statement:
set RS = DBPages.execute("SELECT * FROM masterindex ORDER BY Author_1,Author_2,Author_3,Volume,Number ASC"
Any ideas how I can get it to select A-Z with the author_1 = NULL records first?
Thanks,
Kevin