Time fields are grouped by month

Source: Internet
Author: User
Tags count uuid

Do report encountered a problem, according to the Date field to query the monthly statistics of a month, make a little time to get out, paste out to share.

Statements in 1,oracle grouped by month

<span style= "FONT-SIZE:18PX;" >		SELECT
			to_number (To_char (t.birth_date, ' mm ')) GetMonth,
		  COUNT (t.uuid) Total
		from
			t_ Person T

		GROUP
			by To_char (t.birth_date, ' mm ') ORDER by getmonth</span>
The query results are as follows:


Monthly query statements in 2,mysql

Select Month (createtime) newmonth,count (UUID) total from T_user Group by month (Createtime)

The query results are as follows:

The month method is not supported in Oracle and supports TO_CHAR (). Converts a date field to a month format. The same is true for years, weeks, and quarterly groupings.

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.