|
-
Aug 19th, 1999, 07:09 AM
#1
Thread Starter
Hyperactive Member
The SELECT statament could include a condition (after WHERE clause) to filter the records returned to the recordset.
Example:
SELECT * FROM table WHERE field1='XYZ'
In this case the 'XYZ' is the filter for the field1.
How can I write the statament to fileter for two fields. (field1 and field2)??
Any idea will be appreciated.
Thanks!
Ulises
-
Aug 19th, 1999, 10:05 AM
#2
Frenzied Member
-
Aug 19th, 1999, 03:55 PM
#3
SELECT * FROM table WHERE field1='XYZ' AND field2='ABC'
-Azzmodan
-
Aug 20th, 1999, 01:28 AM
#4
Thread Starter
Hyperactive Member
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|