如何将文本字段连接到一个字段中?

发布于 2024-11-08 23:22:02 字数 280 浏览 0 评论 0原文

我的表有 3 个文本字段:open_time_2、close_time_2、displayed_value(示例值为“5:45”、“4:15”、“”)。 需要用文本“4:15 - 5:45”更新 displayed_value。 如果我使用以下查询:

UPDATE mytable SET displayed_value=(close_time_2 + '-' open_time_2) 
WHERE close_time_2!=""

结果我得到值“9.0”。这里有什么问题吗?

My table has 3 text fields: open_time_2, close_time_2, displayed_value (sample values are '5:45', '4:15', '').
Need to update displayed_value with text '4:15 - 5:45'.
If I use the following query:

UPDATE mytable SET displayed_value=(close_time_2 + '-' open_time_2) 
WHERE close_time_2!=""

In result I am getting value '9.0'. What is wrong here?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

你在看孤独的风景 2024-11-15 23:22:02

您应该使用 SQLite 连接运算符 ||,而不是加法:

UPDATE mytable SET displayed_value=(close_time_2 || '-' || open_time_2)
WHERE close_time_2 != ""

You should use the SQLite concatenation operator, ||, rather than addition:

UPDATE mytable SET displayed_value=(close_time_2 || '-' || open_time_2)
WHERE close_time_2 != ""
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文