No. Quoting is one of those things that each SQL engine seems to have their own solution towards (even though there is a standard). MySQL uses regular single quotes to delineate a string literal. It can also use double quotes for that task. (see https://dev.mysql.com/doc/refman/8.0/en/string-literals.html ). By default, MySQL uses the single back ticks to escape "object names" (see https://dev.mysql.com/doc/refman/8.0/en/identifiers.html). Now if you enable ANSI_QUOTES, double quotes can be used for object names, but never single quotes.
As I'm typing:
If a keyword in single quotes (ex: 'key' or 'glob') is used in a context where an identifier is allowed but where a string literal is not allowed, then the token is understood to be an identifier instead of a string literal.