• Mysql
Mysql對於關鍵字轉義的做法是用`這個符號來進行,例如:
insert into app (name,`key`,secret) values ('aa','bb',null);
• Access以及sqlserver
Access以及sqlserver對於關鍵字轉義的做法是使用中括弧,例如:
Select * from [key] where id=1;
• Oracle以及PostgreSQL
Oracle以及PostgreSQL對於關鍵字轉義的做法是使用雙引號,例如:
create table "TABLE" (***);
至於各資料庫的關鍵字有哪些我就不再列舉了,很多很多,遇到的時候再查吧。