dear friend,
when the tables were created they were equal.
tablea had 200 lines(products_id), tableb had 200 lines(products_id), they were connected to each other with product_id numbers. after a while some of the lines were deleted from tablea mistakenly and connection brake.
now i want to find the deleted lines in tablea, and insert them manually in order to be worked tables properly.
products_id value is unique. if i find the not equal products_id, i tried the version of code written behind but i miss something.
tablea
product_address (numeric 1 to 5000),
products_id
tableb
product_def_address (numeric 1 to 5000),
products_id
select * from table a as a, table b as b where a.products_id != b.products_id;