I am trying to do a simple append query that pulls data from one table in which the "group_no" is > the same "group_no" field in another table. Both data types in the tables are set at Number, Double. I get no results when running the query and cannot figure out why that might be.
Table_1 Table_2
group_no gp_name group_no gp_name
100 Blue 100 Blue
200 Red 200 Red
300 Green 300 Green
400 Yellow 400 Yellow
500 Purple 500 Purple
600 Black
700 Orange
800 Teal
I need the query to pull group_no 600-800 only and have joined the tables on group_no with criteria for that field "> [Table_1].[group_no]" This should work but I must be missing something simple, would appreciate some insight.
Thanks