My website sells garden plants so there are a lot of apostrophes in the names, i.e Canna 'Taney'. When I list the plants in a certain category, or return search results, those with an apostrophe get listed at the top and those without at the bottom, like this :
Canna 'Aphrodite' Canna 'Brilliant' Canna 'Carnival' Canna 'Cleopatra' Canna 'En Avant' Canna Australia Canna Bird of Paradise
Ideally Canna Australia should be second in the list and Canna Bird of Paradise third. I assume getting the the "order by" to ignore the apostrophes is the answer, can it be done?
set rscatlist=db.execute("select * from products where catcode=" & catcode & " order by name ASC")
Is the code that needs modification.