Detailed explanation of the difference and usage of quotes and backticks in MySQL

Detailed explanation of the difference and usage of quotes and backticks in MySQL

Preface

So I wrote this blog. This blog also recommends some knowledge from articles by big guys. If there is any infringement, please contact me! If someone is lucky enough to see this blog, I hope it can be helpful to you. If there are any mistakes, you can point them out directly! !

1. Single quotes:

Let's first introduce single quotes. The word '男' in the picture below is the English single quote.

Why use single quotes? In SQL, some varchar (string, and other string types) need to use single quotes instead of using them directly.

Generally, in the database, numeric types do not need to be enclosed in single quotes. Let's look at the example below:

The above mentioned that in general, quotation marks are not needed. However, if in different visual database tools, some of them can be queried with quotation marks and no errors will be reported. However, we still need to write them with correct SQL statements to avoid bugs in the future.

2. Backticks:

It is a symbol introduced to distinguish MYSQL reserved words from ordinary characters.

We can see the example below:

This is a normal query. What if we put quotation marks around gender? What will happen in this case?

This is incorrect in SQL syntax, but some database visualization tools do not report an error, but we cannot query any values. Let’s add it and see what happens if we add backquotes.

This will result in the same situation as the first one. This is used to distinguish the difference between the two. Otherwise, the database tool will think they are all strings and the search will not be successful! !

Note the following: MySQL reserved words must be distinguished by backticks! ! !

The so-called reserved words are SQL instructions for databases such as select database insert. When we have to use them as table names and field names, we must add backticks to prevent the compiler from considering this part as a reserved word and generating an error.

You may also be interested in:
  • Problems with using multiple single quotes and triple quotes in MySQL concat
  • How to insert a value containing single quotes or backslashes in MySQL statements
  • A detailed analysis of the murder caused by a misplaced double quote in MySQL
  • About Mysql query with single quotes and inserting strings with single quotes
  • Analysis of MYSQL performance issues caused by a single quote

<<:  Uniapp implements DingTalk scan code login sample code

>>:  CSS achieves highly adaptive full screen

Recommend

Detailed explanation of MySQL database isolation level and MVCC

Table of contents 1. Isolation Level READ UNCOMMI...

Mini Program Recording Function Implementation

Preface In the process of developing a mini progr...

How to install MySQL 8.0 and log in to MySQL on MacOS

Follow the official tutorial, download the instal...

Detailed explanation of common methods of JavaScript String

Table of contents 1. charAt grammar parameter ind...

A Brief Analysis of the Differences between “:=” and “=” in MySQL

= Only when setting and updating does it have the...

A brief discussion on the use and analysis of nofollow tags

Controversy over nofollow There was a dispute bet...

Detailed analysis of compiling and installing vsFTP 3.0.3

Vulnerability Details VSFTP is a set of FTP serve...

Summary of 16 XHTML1.0 and HTML Compatibility Guidelines

1. Avoid declaring the page as XML type . The pag...

MySQL lock control concurrency method

Table of contents Preface 1. Optimistic Locking A...

Small program to implement a simple calculator

This article example shares the specific code of ...

Detailed explanation of the usage of compose function and pipe function in JS

Table of contents compose function Array.prototyp...

Solution to the 404/503 problem when logging in to TeamCenter12

TeamCenter12 enters the account password and clic...