SQL 将 2 个 varchar 的总和复制到新表
这是我的第一个问题,很抱歉,如果它的结构不好,我已经寻找答案一段时间了,但没有喜悦,所以这里是..
基本上我有 20 列,想要获取添加列 (a+b) (b) 的结果+c) 等并使其成为我的新列的值,
当我执行一个简单的 select 语句时,值按预期显示,但我似乎无法让它们出现在新表中,
列是 varchars,
这是 20 个选择之一查询
((accidentlogs.before_T18/16-accidentlogs.before_T19/16)/21.954),
这似乎是一个如此简单的功能,它可能只是在我身上插了一个叉子
tis my first question so sorry if its not well structured, I have looked for the answer for a while but no joy so here goes..
basically I have 20 columns and want to take the result of adding columns (a+b) (b+c) etc and make this the value of my new columns,
when i do a simple select statement the values appear as expected but i cant seem to get them to appear into a new table
the columns are varchars
this is one of the 20 select queries
((accidentlogs.before_T18/16-accidentlogs.before_T19/16)/21.954),
It seems like such an easy function and it probably is but stick a fork in me on this one
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 SELECT 语句的结果作为 INSERT 语句的值。确切的语法可能因您使用的 SQL 方言而异(Oracle、Postgres、MySql...)
这是 postgres 的代码:
You can use the result of a SELECT Statement as a value for an INSERT Statement. The exact syntax may vary for the SQL Dialect you use (Oracle, Postgres, MySql...)
This is the code for postgres: