DB Writer without column names

Hi,
I want write on table to db without specifying column names
(result query has to be
INSERT INTO TABLE VALUES (value1, value2, ecc)
and NOT
INSERT INTO TABLE (col1, col2, ecc) VALUES (value1, value2, ecc))

How can I do?

Hi @pigreco,

if the Database Writer does not work for your specific use case, you can use a Database SQL Executor node or a SQL Inject node to execute customized queries.

Cheers,
Marten