On Sunday, July 6, 2003, 7:26:06 PM, Kevin wrote:

KF> and now.. if in one cell i have for example... "John Matheus"

KF> when i do the query i have to put exactly john matheus to find it...
KF> is there any way to just write jo and search in every cell that contains
KF> those words?

try this SELECT * FROM table WHERE name = jo%

KF> example... i have  1 column with 5 rows each 6 numbers inside :
KF> 821554
KF> 821674
KF> 818937
KF> 819378
KF> 818977

KF> and i want to query and show onmy begining with 821*

SELECT * FROM table WHERE number > 821000

-- 
Regards,
Burhan Khalid
phplist[at]meidomus[dot]com
http://www.meidomus.com


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to