evergrean100
Technical User
How can I combine the two below queries in Access 2003 where I need to know if none, one or both of the queries got a hit from form entries taken from a Web page:
Code:
select * from mytable
where firstname = 'formvariable.pocfirstname'
and lastname = 'formvariable.poclastname';
Code:
select * from mytable
where firstname = 'formvariable.supfirstname'
and lastname = 'formvariable.suplastname';