I am developing a GUI which contains a table with 8 columns, (A,B,C,D,E,F,G)
In the database I have two tables. Table1 contains (A,B,C,D,E+) and Table2 contains (E,F,G). Here E+ is FK to Table1.
Now I want to insert using a prepared statement and then popluate GUI table. I am writing the insert query as follows. The E+ FK in Table1 is to popluate values of Table2.
insert into table1 (a,b,c,d,e,f,g) values (?,?,?,?,(select t2.E from t2 where t2.E=2)
ps.setString(1,a)
ps.setString(2,b)
ps.setString(3,b)
...
By using above query I am not able to insert into DB as well as GUI table. Please let me know the correct query.