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.
如何从sql中的日期列中获取季度。日期列中的行类似于 23-3-2021
select DatePart(quarter, DateColumn)
如果您使用的是 Sqlserver 或 Postgresql(它所在的位置date_part)
date_part
如果您使用的是mysql,那么它是
从表中选择季度(日期列)
sql server 的 datepart()
从表中选择 DatePart(季度,日期列)