It looks like you have:
$InsertQuery->bindColumn("genomsnittsbetyg", "s", "", "WA_SKIP");
Which will cause it to not enter a value for that column, however that column doesn't have a default specified and doesn't allow null. You can't skip a column that doesn't have a default value and doesn't allow null during an insert.