The same number adjacent to the MySQL Query record time, record interval less than the specified number of seconds _ MySQL

Source: Internet
Author: User
The same number adjacent to the MySQL Query record time. The record interval is less than the specified number of seconds.
The same number adjacent to the MySQL Query record time. The record interval is less than the specified number of seconds # create table 'tmp _ 20120710_3 '('id' int (11) not null AUTO_INCREMENT, 'desttermid 'varchar (11) default null, logtime varchar (20) default null, primary key ('id') ENGINE = InnoDB default charset = gbk # Sort
# Import a temporary table with the same structure # ensure the same number record time from the PK is adjacent to insert into 'tmp _ 20120710_4 (desttermid, logtime) SELECT desttermid, log_time FROM 'tmp _ 20120710_3 'order by desttermid, logtime # The record time format is yyyyMMddHHmmss # converted to a timestamp in seconds to calculate the record interval # SELECT a for timestamp with the same desttermid field value and adjacent record time. desttermid, ABS (UNIX_TIMESTAMP (. logtime)-UNIX_TIMESTAMP (B. logtime) AS timediff,. logtime, B. logtime FROM 'tmp _ 20120710_4 'a, 'tmp _ 20120710_4 'B WHERE. desttermid = B. desttermid AND. id = B. id + 1 AND timediff <30
BitsCN.com

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.