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 新手,刚开始在一家公司实习。该公司希望我们编写一些 SQL 来查找每周的工作小时数。我想知道如何使用 SQL 在一段时间(如一周)内查找列的总和。 谢谢。
我建议您使用 SQL 手册。
SQL中有5个聚合函数
select <DateColumn>,Sum(<columname>) from <Table> where <DateColumn> between <Date1> and <Date2) Group by <DateColumn>