SQL 将 2 个 varchar 的总和复制到新表

发布于 2024-10-07 23:00:11 字数 322 浏览 4 评论 0原文

这是我的第一个问题,很抱歉,如果它的结构不好,我已经寻找答案一段时间了,但没有喜悦,所以这里是..

基本上我有 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

风筝有风,海豚有海 2024-10-14 23:00:11

您可以使用 SELECT 语句的结果作为 INSERT 语句的值。确切的语法可能因您使用的 SQL 方言而异(Oracle、Postgres、MySql...)

这是 postgres 的代码:

INSERT INTO table (field1, field2...) SELECT 'value1', 'value2'...

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:

INSERT INTO table (field1, field2...) SELECT 'value1', 'value2'...
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文