Our table has 5 columns, using INSERT INTO I was able to insert a row with 5 values using the query

Our table has 5 columns, using INSERT INTO I was able to insert a row with 5 values using the query api. I did
"sql": "INSERT INTO table (channel, title, start_time, end_time, description) VALUES (?, ?, ?, ?, ?);"
Is it possible to insert multiple rows with one quest? Something like
sql": "INSERT INTO table (channel, title, start_time, end_time, description) VALUES (?, ?, ?, ?, ?), (?, ?, ?, ?, ?), (?, ?, ?, ?, ?);"
Was this page helpful?