I have two tables, in one table “Car number”, I have a list of car numbers there. In the second table “Registered numbers” I have registered car numbers there. In the “Registered Numbers” table, I fill out the form using the LOV list taken from the “Number Table” table. Is it possible to make sure that in the form when filling out "Registered numbers" in the LOV list there are only those numbers that have not been registered before. Since now all the numbers from the “Car number” table appear in the list. Thanks for the help)
CREATE TABLE number_car
id NUMBER(10) ,
number varcahar2(10),
date_add varcahar2(30)
);
CREATE TABLE registered_numbers
id NUMBER(10) ,
reg_number varcahar2(10),
date_reg varcahar2(30)
);
select for form table registered_numbers (LoV);
select number as num,number from number_car