【postgresql 】 ERROR: “name“ is not supported as an alias

org.postgresql.util.PSQLException: ERROR: "name" is not supported as an alias

错误:不支持将“name”作为别名

【postgresql 】 ERROR: “name“ is not supported as an alias_第1张图片

 SELECT  real_name name  FROM  doc_user

【postgresql 】 ERROR: “name“ is not supported as an alias_第2张图片

加上 在关键词上加上 “”

示例:

   SELECT  real_name "name"  FROM  doc_user
       

【postgresql 】 ERROR: “name“ is not supported as an alias_第3张图片

在mybatis的mapper XML文件中

PostgreSQL 写法

【postgresql 】 ERROR: “name“ is not supported as an alias_第4张图片

MySQL 写法

【postgresql 】 ERROR: “name“ is not supported as an alias_第5张图片

你可能感兴趣的:(java,数据库,开发语言)