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 Quote 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. Quote Link to comment https://forums.phpfreaks.com/topic/149459-where/#findComment-785038 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.