Reserved Words

suggest change

Introduction

MySQL has some special names called reserved words. A reserved word can be used as an identifier for a table, column, etc. only if it’s wrapped in backticks (`), otherwise it will give rise to an error.

To avoid such errors, either don’t use reserved words as identifiers or wrap the offending identifier in backticks.

Remarks

Listed below are all reserved words (from the official documentation):

Feedback about page:

Feedback:
Optional: your email if you want me to get back to you:



Table Of Contents