gpt4 book ai didi

mysql - 如何将 sql 时间戳值插入到 Rails 中的日期时间类型?

转载 作者:数据小太阳 更新时间:2023-10-29 08:12:38 25 4
gpt4 key购买 nike

date = Date.today     
query = "insert into custom_reports(name,description,created_at) values(#{report_name}, #{report_content}, #{date})"
ActiveRecord::Base.connection.execute(query);

它插入

0000-00-00 00:00:00

所以想到了采用mysql时间戳的方式。可以吗?

最佳答案

这应该可行

query = "insert into custom_reports(name,description,created_at) values('#{report_name}', '#{report_content}', '#{Time.now}')"

关于mysql - 如何将 sql 时间戳值插入到 Rails 中的日期时间类型?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18760514/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com