Why do i see "you have an error in your sql syntax" in sql?

Example:

INSERT INTO users id, name VALUES (3, "Alice");
This error message typically indicates that there is a syntax error in the SQL query.

Solution:

INSERT INTO users (id, name) VALUES (3, "Alice");

Beginner's Guide to SQL