MySQL database sql statement uses keywords as where conditions for filtering examples, MySQL creates tables and query fields as keyword solutions

Just wrap the keywords with backquotes, and the backquotes can be typed by the key on Tab .
I use the keyword where as an example.

create table key_word (`where` char(50));
insert key_word value("北京");
desc key_word;

Insert picture description here

select * from key_word where `where` = '北京';

Insert picture description here
Like it if you like it ❤!

Guess you like

Origin blog.csdn.net/qq_38161040/article/details/108734306