SQL statement queries the most recent data for a table in a time period

Source: Internet
Author: User

First, the idea: query in a time period of the most recent time field, and then use the fields found with the original table for self-connection, and finally to the self-connected table to make the required fields of the query.

Second, SQL statement:

SELECT
*
From
(
SELECT
Max (i.createdate) as CreateDate,
r.websiteconfiginfo_id as WebId
From
Run R
WHERE
R.staticsendtime Between:begintime
And:endtime
and r.websiteconfiginfo_id =: WebSiteID
) as R1
JOIN run R2 on (
R1.createdate = R2.createdate
and r1.webid = r2.websiteconfiginfo_id
)

SQL statement queries the most recent data for a table in a time period

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.