JAVA, SQL, insert into no-duplicates
问题 I am trying to insert into a table without duplicates. I am using SQL derbyclient in Java. The code is not working (error with 'where not exists' ). Any idea? Connection connection = DriverManager.getConnection("jdbc:derby://localhost:1527/PetroleumDataStorageSystemDB;create=true"); PreparedStatement statement; int i = 1; int progress = 0; for (Refuel refuelList1 : refuelList) { progress = (i / refuelList.size()) * 100; String sql = "INSERT INTO refuel (id_tank, time, fuel_volume, " +