09-05-2005 04:26 AM
SELECT *
FROM table_name
WHERE property 1 = 123
AND property2 = "abc"
09-05-2005 04:57 AM - edited 09-05-2005 04:57 AM
Hi Michael
You can use "LIKE":
SELECT * FROM table_name WHERE property 1 LIKE '12%'
% represents multiple characters (e.g. entries with property 1 123 but also 1240 would be selected)
_ represents one character
Hope this helps.
Thomas
Message Edited by becktho on 09-05-2005 11:57 AM