okay, i understand titles starting with letters
and i understand titles starting with numbers
what i was interested in seeing examples of was titles that satisfied what you said earlier - "I would like it to Select titles with either numbers or letters
but not both"
titles that start with letters --
Code:
select foo from bar where qux regexp '^[[:alpha:]]'
titles that start with numbers --
Code:
select foo from bar where qux regexp '^[[:digit:]]'
titles that start with neither a letter nor a number --
Code:
select foo from bar where qux regexp '^[^[:alnum:]]'