Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
日期列的数据类型为 DATE,时间列的数据类型为 TIMe。我想合并这两列并生成一个数据类型为 TIMESTAMP 的新列。我应该使用哪个功能?在此处输入图像描述
timestamp(dateCol) + int(timeCol)
首先将日期列转换为时间戳类型,然后添加当天的毫秒数。DolphinDB 在内部以毫秒为单位表示时间对象。所以我们直接将时间列转换为整数。