how to display only 4 records from a table based on a
condition
for ex
i have a table called products
in that nid,prodname are fields
i want to display only any 4 records of perticular product
plz tell me

Answers were Sorted based on User's Feedback



how to display only 4 records from a table based on a condition for ex i have a table called pr..

Answer / roger

LIMIT 0,4 will return 5 records because it starts with 0.
It should be LIMIT 0,3

SELECT prodid, prodname FROM products limit 0,3

Is This Answer Correct ?    16 Yes 6 No

how to display only 4 records from a table based on a condition for ex i have a table called pr..

Answer / vigneshram

select nid, prodname from products limit 0,4

Is This Answer Correct ?    8 Yes 3 No

how to display only 4 records from a table based on a condition for ex i have a table called pr..

Answer / surya prakash

SELECT prodid, prodname FROM products limit 4;

Is This Answer Correct ?    5 Yes 1 No

how to display only 4 records from a table based on a condition for ex i have a table called pr..

Answer / anil alpati

No need to adding offset value. since your question says starting from first 4 records

Below is my query -
select nid, prodname from products limit 4

Is This Answer Correct ?    1 Yes 0 No

how to display only 4 records from a table based on a condition for ex i have a table called pr..

Answer / sql

Definition: Limit is used to limit your MySQL query results
to those that fall within a specified range. You can use it
to show the first X number of results, or to show a range
from X - Y results. It is phrased as Limit X, Y and included
at the end of your query. X is the starting point (remember
the first record is 0) and Y is the duration (how many
records to display).
Also Known As: Range Results
Examples:

SELECT * FROM `your_table` LIMIT 0, 10

This will display the first 10 results from the database.

SELECT * FROM `your_table` LIMIT 5, 5

This will show records 6, 7, 8, 9, and 10

Is This Answer Correct ?    1 Yes 0 No

how to display only 4 records from a table based on a condition for ex i have a table called pr..

Answer / cherry-mae

algorithm

An algorithm (pronounced AL-go-rith-um) is a procedure or
formula for solving a problem. The word derives from the
name of the mathematician, Mohammed ibn-Musa al-Khwarizmi,
who was part of the royal court in Baghdad and who lived
from about 780 to 850. Al-Khwarizmi's work is the likely
source for the word algebra as well.

A computer program can be viewed as an elaborate algorithm.
In mathematics and computer science, an algorithm usually
means a small procedure that solves a recurrent problem.

Is This Answer Correct ?    0 Yes 2 No

Post New Answer

More MySQL Interview Questions

Is there a free version of mysql?

0 Answers  


which version of mysql can't support stored procedure??

3 Answers  


What is difference between function and procedure in mysql?

0 Answers  


How do I copy an entire mysql database?

0 Answers  


How to display top 10 rows in mysql?

0 Answers  






How to upload a large file through phpmyadmin in mysql?

0 Answers  


What is a csv table?

0 Answers  


Who developed mysql?

0 Answers  


what is a cursor? : Mysql dba

0 Answers  


How to Join tables on common columns.

0 Answers  


How to see the database architecture in MySQL??

3 Answers  


What are the security alerts while using mysql?

0 Answers  


Categories