问题描述
我正在设计一个数据库。现在它在MySQL上,但明天可以迁移到另一个DBMS。所以我必须注意不要使用保留字(对于MySQL和可能为任何其他DBMS)作为字段名称。我不想使用保留字作为字段名称,用引号或方括号括起来!
I'm designing a database. Now it's on MySQL, but tomorrow could migrate on another DBMS. So I have to pay attention not to use reserved words (for MySQL and possibly for any other DBMS) as field names. And I don't want to use reserved word as field names, wrapped in quotes or square brackets!
有一个网站,我可以找到所有保留字对于每个DBMS?或至少对最常用的。如果存在一个工具,你会把一个单词,它给你所有的DBMS,它是一个保留字,如果有的话,这将是巨大的。
Is there a site where I can find all reserved words for every DBMS? Or at least for the most used ones. It would be great if would exist a tool where you put a word and it gives you all DBMS for which it is a reserved word, if any.
如果没有在线参考或这种工具,我们可以收集每个DBMS的保留字的页面的链接列表。非常感谢!
If there is no online reference or tool of this kind, we could recollect a list of links for the pages of reserved words of every DBMS. Thanks a lot!
推荐答案
WOW ...我发现这个在线工具:。
WOW... I found this online tool: Reserved Word Search.
它对DBMS和编程语言都有效。它似乎是最新的。
It's valid both for DBMS and programming languages. It seems quite up-to-date.
这篇关于每个DBMS的所有保留字的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!