• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

Real quick MySQL question....

DAM

Diamond Member
I want to be able to extract only the names that fits some range ie <A-C> <D-F> <etc>

I am trying to do:

SELECT * FROM user WHERE name LIKE "a%" or "c%";


but that doesn't work, any tips welcomed.



thanks.
dam()

Yes i know wrong forum, yes i know I already googled the problem.
 
Thanks for the expression gg, but i went with the between statement:


SELECT * FROM user WHERE name BETWEEN "a%" AND "dz%"


dam()
 
Originally posted by: DAM
I think I love you.


Thanks!!!

Your welcome, but I think I'm going to reject your love 😛.
I'm already married and I don't think my wife would appreciate some random guy from the internet loving me 😛 😉.
 
Back
Top