1-- The error means that you are providing not as much data as the table wp_posts does contain
2-- columns. And now the DB engine does not know in which columns to put your data.
3-- To overcome this you must provide the names of the columns you want to fill. Example:
4
5insert into wp_posts (column_name1, column_name2)
6values (1, 3)