Hi, I have the followinf select statement..SELECT - 1 AS OrganisationID, '--Please Select--' AS OrganisationNameUNION ALLSELECT OrganisationID, OrganisationNameFROM tblOrganisationORDER BY OrganisationName
ResultsOrganisationID OrganisationName22 Animal15 Birds-1 --Please Select-- 40 Reptiles36 Snakes
I want the results to be; OrganisationID OrganisationName-1 --Please Select-- 22 Animal15 Birds40 Reptiles36 Snakes
How can I update my SQL select statement to yield these results.. Thank you