执行sql语法时出现异常[重复]
Posted
技术标签:
【中文标题】执行sql语法时出现异常[重复]【英文标题】:Getting exception while executing sql syntax [duplicate] 【发布时间】:2017-08-02 17:03:16 【问题描述】:描述语法在 PLSql 中不起作用:
我使用以下语法:
DESCRIBE tblcustomer;
执行上述查询后出现异常:
ERROR: syntax error at or near "DESCRIBE"
LINE 1: DESCRIBE tblcustomer;
^
********** Error **********
ERROR: syntax error at or near "DESCRIBE"
SQL state: 42601
Character: 1
【问题讨论】:
***.com/questions/109325/postgresql-describe-table 你在the manual哪里找到describe
?
【参考方案1】:
改用这个:
\d tblcustomer
或此了解更多详情
\d+ tblcustomer
列出可用的\…
命令
\?
【讨论】:
获取异常:错误:“\”第 1 行或附近的语法错误:\d tblcustomer; ^ ********** 错误 ********** 错误:“\”处或附近的语法错误 SQL 状态:42601 字符:1 你在使用psql
命令行客户端吗?
没有。我正在使用 postgres sql 浏览器以上是关于执行sql语法时出现异常[重复]的主要内容,如果未能解决你的问题,请参考以下文章