Detailed example of mysql similar to oracle rownum writing

Detailed example of mysql similar to oracle rownum writing

Rownum is a unique way of writing in Oracle. In Oracle, rownum can be used to retrieve the first piece of data or to limit the number of batches to be written when writing data in batches.

How to write the first data in mysql

SELECT * FROM t order by id LIMIT 1;

How to write the first data in oracle

SELECT * FROM t where rownum =1 order by id;

OK, the above is a comparison of the writing methods of MySQL and Oracle to get the first data, but this is only one usage of rownum. Rownum can also be used to write data in batches.

Write 10,000 records to table t in batches:

 insert into t(id,date) select sys_guid(),sysdate from dual connect by rownum<=10000;

Oracle original writing:

select * from (select id,name from t) where rownum <![CDATA[<=]]> to_number(num);

SQL rewritten by mysql:

SELECT 
 * 
FROM
 (SELECT 
  tb.*,
  @rownum := @rownum + 1 AS rownum 
 FROM
  (SELECT 
   id,
   NAME 
  FROM
   t) tb,
  (SELECT 
   @rownum := 0) r) AS t 
WHERE rownum <= CAST(num AS SIGNED INTEGER);

The above is all the knowledge points introduced this time. Thank you for your support of 123WORDPRESS.COM.

You may also be interested in:
  • Detailed explanation of the misunderstanding between MySQL and Oracle
  • Implementation of SpringBoot multi-database connection (mysql+oracle)
  • Detailed explanation of the solution for real-time synchronization from MySQL to Oracle
  • Example of creating table statements for user Scott in MySQL version of Oracle
  • Description of the default transaction isolation level of mysql and oracle
  • Description of the correspondence between MyBatis JdbcType and Oracle and MySql data types
  • Summary of the differences between MySQL and Oracle (comparison of functional performance, selection, SQL when using them, etc.)
  • A brief discussion on the differences between the three major databases: Mysql, SqlServer, and Oracle
  • Problems and solutions when replacing Oracle with MySQL

<<:  jQuery implements employee management registration page

>>:  How to install Linux system (Redhat8) and virtual machine network configuration in VMware

Recommend

Take you to understand MySQL character set settings in 5 minutes

Table of contents 1. Content Overview 2. Concepts...

onfocus="this.blur()" is hated by blind webmasters

When talking about the screen reading software op...

A simple example of using Vue3 routing VueRouter4

routing vue-router4 keeps most of the API unchang...

Tutorial on installing VMWare15.5 under Linux

To install VMWare under Linux, you need to downlo...

What are your principles for designing indexes? How to avoid index failure?

Table of contents Primary key index Create indexe...

Beginners understand MySQL deadlock problem from source code

After many difficult single-step debugging late a...

MySql index improves query speed common methods code examples

Use indexes to speed up queries 1. Introduction I...

A brief discussion on the problem of forgotten mysql password and login error

If you forget your MySQL login password, the solu...

Linux bridge method steps to bridge two VirtualBox virtual networks

This article originated from my complaints about ...

Some notes on modifying the innodb_data_file_path parameter of MySQL

Preface innodb_data_file_path is used to specify ...

Example of creating table statements for user Scott in MySQL version of Oracle

Overview: Oracle scott user has four tables, whic...

Example code for implementing a QR code scanning box with CSS

We usually have a scanning box when we open the c...

VMware Tools installation and configuration tutorial for Ubuntu

Some time ago, the blogger installed the Ubuntu s...