Mysql syntax error when adding to columns

I’m trying to add insert information into a table I made but I’m getting an error. I don’t see what I’m doing wrong here though, but I’m also not sure how to read the error message.

mysql> describe message;
+-----------+------------+------+-----+---------+----------------+
| Field     | Type       | Null | Key | Default | Extra          |
+-----------+------------+------+-----+---------+----------------+
| id        | int(11)    | NO   | PRI | NULL    | auto_increment |
| whenAdded | datetime   | YES  |     | NULL    |                |
| comment   | text       | YES  |     | NULL    |                |
| deleted   | tinyint(1) | YES  |     | 0       |                |
+-----------+------------+------+-----+---------+----------------+
4 rows in set (0.00 sec)

mysql> INSERT INTO 'message' ('id','whenAdded','comment','deleted') VALUES (NULL,'2018-07-26 07:01:30', 'hello test hello lorem ipsem amut livi', FALSE);
ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''message' ('id','whenAdded','comment','deleted') VALUES (NULL,'2018-07-26 07:01:' at line 1

The problem is at line 1. Is this the id row or the whenAdded row? I’m not sure what I should change about them to make the error go away and would appreciate help with this.

If your table or column names have spaces in them (or if they happen to be a reserved keyword), you need to surround them with backticks, not single quotes. Since your table and field names don’t have any spaces, you don’t need this at all; just write your table and field names without any enclosing characters.

I removed the quotes around message but I’m still getting the same error.

INSERT INTO message ('id','whenAdded','comment','deleted') VALUES (NULL,'2018-07-26 07:01:30', 'hello test hello lorem ipsem amut livi', FALSE);

What should I add besides NULL? According to answers I see on stackoverflow I’m supposed to add null for my id to auto increment. Is this wrong?

thanks, that was my problem.