What triggers "you have an error in your sql syntax; check the manual for your mysql server version" in sql?

Example:

SELEC * FROM users;
This error occurs when there’s a typo or incorrect syntax in your SQL query.

Solution:

-- Correct the typo or syntax error
SELECT * FROM users;

Beginner's Guide to SQL