php.ajax.coder Posted March 15, 2009 Share Posted March 15, 2009 I need to have a which returns the number of words which don't start with A-Z SELECT COUNT(*) FROM Dictionary WHERE Word LIKE 'A%' Other than saying NOT 'A%' AND NOT 'B%' etc.... is there a simple way of doing this Thanks Link to comment https://forums.phpfreaks.com/topic/149459-where/ Share on other sites More sharing options...
corbin Posted March 15, 2009 Share Posted March 15, 2009 You could use MySQL's REGEXP feature. (I think the keyword for regular expression match [regexp] is REGEXP.) Aside from that, I don't know if it's possible. Link to comment https://forums.phpfreaks.com/topic/149459-where/#findComment-785038 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.