Why doesn't this simple SQL work?
<div><br></div><div>select s_fullname from ships order by upper(sname)</div><div><br></div><div>I get error unexpected token "upper".</div><div><br></div><div>of course</div><div><br></div><div>select s_fullname from ships order by sname</div>
<div><br></div><div>does work but I want the sort to ignore case</div>