Let’s say I have a column “name” and the field is a select field. How can I do a select that only shows those names that have not been entered yet for a new id_name?
table_name
id_name name
1 Max, Mustermann
2 Peter, Bauer
3 …SELECT select_name FROM table_select ORDER BY select_name…(Result of SELECT should be “Peter, Bauer” and “Anna, Helber”)…
table_select
id_select select_name
1 Max, Mustermann
2 Peter, Bauer
3 Anna, Helber
4 Karl, Gustav