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.
我这里有一个奇怪的!我有一个具有发布时间的数据库表,并且每分钟运行一个代码来查看是否要发布某些内容。我知道事实上有 3 条不同的记录以上午 09:00:00 作为时间。
当我运行以下代码时,我只得到一条记录:
SELECT * FROM AutoContentTimes WHERE FireTime = '09:00:00 AM'
有什么问题,这很简单。FireTime 是 char(11)
提前谢谢了,
新杰克
你可以set rowcount 1设置。
set rowcount 1
尝试set rowcount 0
set rowcount 0
并且,正如评论的那样,不要将时间存储为char. 使用适当的数据类型。
char