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.
我想在 ms 访问中的查询中包含当天的名称?我知道如何从格式字段中的查询设计器中将其作为“dddd”,但希望将其添加到 sql 编辑器中作为我的语句的一部分。
它是 select、from、where、group by、order by 语句的一部分,其中日期在 where 子句中指定,但我希望它显示为当天的名称,即星期二在另一列中。
谢谢
格式也适用于查询:
SELECT ADate, Format([ADate],"dddd") AS ADay FROM Table1;
这是一个选择语句,它从日期时间返回日期名称
SELECT datename(dw,GETDATE()) AS 'Day Name'
这给了我当前日期的名称。