📜  表用户 postgres - SQL 代码示例

📅  最后修改于: 2022-03-11 15:05:34.095000             🧑  作者: Mango

代码示例1
user is a reserved word in PostGreSQL
If you insist on using that name for tables then use "USER" with double quotes.
/*EXAMPLE*/
create table "user" (...);