I currently have 2 tables, both tables have the same structure and will be used in the web application. two tables are production and pace. The temp table contains one additional column named [signed up]. I am currently creating one list using the two columns that are in each table (name and name). Using these two fields, I can support the web application search function. Now I will need to limit the number of elements that can be used in the search in the second table. the reason for this is that when a person is "registered", a similar record is created in the worksheet and will have its own recno.
doing:
Select recno, name from production UNION ALL Select recno, name from temp
... will show me all. I tried:
Select recno, name from production UNION ALL Select recno, name from temp WHERE signup <> 'Y'
But does this return nothing? Can anyone help?
source share