Jul 2, 2003 #1 Caryisms Technical User Oct 17, 2001 132 US How do I write the code in-order to see a particular value in one field? ie. Select Number Field where number is "1",
How do I write the code in-order to see a particular value in one field? ie. Select Number Field where number is "1",
Jul 2, 2003 #2 jrbarnett Programmer Jul 20, 2001 9,645 GB Select Fieldname From Tablename Where Fieldname=1 John Upvote 0 Downvote
Jul 2, 2003 Thread starter #3 Caryisms Technical User Oct 17, 2001 132 US Thank you John. How do I join records in a union query that will make two records with an ID in common one record? Thanks! Upvote 0 Downvote
Thank you John. How do I join records in a union query that will make two records with an ID in common one record? Thanks!
Jul 2, 2003 #4 jrbarnett Programmer Jul 20, 2001 9,645 GB A union query is for joining the results of two select queries together, whether related or not. The syntax is: select field1, field2 from table1 where field3 = 1 union select field4, field5 from table2 where field6 = 2 John Upvote 0 Downvote
A union query is for joining the results of two select queries together, whether related or not. The syntax is: select field1, field2 from table1 where field3 = 1 union select field4, field5 from table2 where field6 = 2 John