这是在 java 中编写查询以在 postgres 中创建新表的正确方法吗?
String query = "CREATE TABLE \ "EtherMap\".\ table_name\"( feature_name (20));"
这里 feature_name 是包含列名的变量
table_name 是包含表名的变量
Ethermap 是表名数据库
String query = "CREATE TABLE \ "EtherMap\".\ table_name\"( feature_name (20));"
Here feature_name is the variable that contains the column name
table_name is the variable that contains the name of the table
Ethermap is the name of the DB
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这应该有效:
This should work :
您需要为
feature_name
列指定一个类型,例如:You need a type for your
feature_name
column, like: