在 pgadmin sql 编辑器中创建表?
我无法通过 PGadmin III SQL 编辑器创建表 - 即使语法是由前端生成的:
CREATE TABLE testtable
(
id integer,
"name" character varying(100)
)
WITH (
OIDS = FALSE
)
;
错误消息是德语,但基本上说应该存在语法错误..
FEHLER: Syntaxfehler bei »integer«
ZEILE 3: id integer,
^
********** Fehler **********
有什么想法吗?
I am failing in creating tables via the PGadmin III SQL editor - even if the syntax is generated by the frontend:
CREATE TABLE testtable
(
id integer,
"name" character varying(100)
)
WITH (
OIDS = FALSE
)
;
Error message is in german, but basically says that there's supposed to be a syntax error..
FEHLER: Syntaxfehler bei »integer«
ZEILE 3: id integer,
^
********** Fehler **********
Any ideas ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
对我来说效果很好。
但是我看到错误显示在第 11 行。是否有可能前面的语句没有正确终止并且解释器选择了这一点放弃?
Works fine for me.
However I see the error is indicated at line 11. Is it possible the previous statement was not properly terminated and the interpreter chooses this point to give up?