如何将文本字段连接到一个字段中?
我的表有 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您应该使用 SQLite 连接运算符
||
,而不是加法:You should use the SQLite concatenation operator,
||
, rather than addition: