MySQL

R4R® MySQL
(追記) (追記ここまで)
(追記) (追記ここまで)
Limit in MySQL

In this command we use the Limit word to get the limited output as define in the specified conditions

Syntax

SELECT * 
FROM tablename 
WHERE Clause 
LIMIT number;

The limit number define the number of rows we want to show to get the desired output

Example

SELECT *
FROM studinfo 
LIMIT 5 ;
(追記) (追記ここまで)

Selected output required within the limit define ,whose code is given below

Example

SELECT sid,fname,mname
FROM studinfo 
LIMIT 5 ;

Suppose we have some limited input in my table and want to print the lower order , then we have to use the ORDER BY command in DESC(descending order) type

Example

SELECT *
FROM studinfo 
ORDER BY sid DESC
LIMIT 5;

Example

SELECT *
FROM studinfo 
WHERE sid>107
ORDER BY sid DESC
LIMIT 7;

In the above command we have use two condition like sid> 107 and limit and output will be shown those fullfill its both the conditions

(追記) (追記ここまで)
Copyright ©2021-22 r4r.co.in, all rights reserved. Theguestspost.com
Sitemap
Career
Post comment
About us
Subscription
Unsubscription

AltStyle によって変換されたページ (->オリジナル) /