The data in the Word table automatically updates to match the data in the Excel file. When you insert and fill out a new Excel worksheet, you have an Excel file that can be updated at any time.
In those cases, jOOQ emulates multi-record INSERTs using the following SQL: INSERT INTO AUTHOR (ID, FIRST_NAME, LAST_NAME) SELECT 100, 'Hermann', 'Hesse' FROM DUAL UNION ALL SELECT 101, 'Alfred', 'Döblin' FROM DUAL Some RDBMS do not support inserting several records in a single statement.