Correct usage of SQL statements in mysql Databases

Source: Internet
Author: User

The following article introduces the mysql database SQL statements and the actual steps for getting n-m pieces of data in the table, at the same time, it also includes some other common database SQL statements to take n-m pieces of data from the relevant table. We first write the content we want to express in the way of proposition.

Proposition: Write an SQL statement: take out the ID Automatically increasing from 31st to 40th records in Table A as the primary key. Note: The ID may not be consecutive .)

Oracle Database:

 
 
  1. select * from A where rownum<=40 minus select * from A where rownum<=30 

SQL Server database:

 
 
  1. select top 10 * from A where id not in (select top 30 id from A )  
  2. select top 10 * from A where id>(select max(id) from (select top 30 id A) as A)  

Mysql database:

 
 
  1. SELECT * FROM A LIMIT 30,40 

The above content is an introduction to the SQL statements of the mysql database. I hope you will find some gains.

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.