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.
我有一个名为 morecrimes 的 sql 表。无论日期如何,我想选择晚上 10 点之后和早上 6 点之前发生的每条记录。
我知道我应该使用 datepart 但不能完全让它开火
有一列称为日期,其值类似于“2013-09-13 16:45:59”
下面的 SQL 在正确的轨道上吗?
SELECT datepart('hour',date)>22 from morecrimes
SELECT * FROM morecrimes WHERE datepart('hour',date)>=22 OR datepart('hour',date)<6