|
||||||
| Database & Database Programming MySQL, Oracle, SQL, PL/SQL, ABAP, Smart Forms, and other databases and languages. A database is an organized body of related information used in many websites (including CC). |
![]() |
|
|
LinkBack | Thread Tools | Search this Thread | Display Modes |
|
|||
|
Is there a way in MySQL to limit how many results are shown?
SELECT * FROM tbl; but I only want say, 25 results. Is this possible?
__________________
I Need Help |
| Sponsored Links |
|
|
|
|||||
|
You can do a ORDER BY to get the top ten combined with limit
SELECT * FROM tbl ORDER BY clm_num LIMIT 0,10; Do to in reverse order do SELECT * FROM tbl ORDER BY clm_num LIMIT 0,10 DESC; // Descending Order You can also ORDER by multiple columns in your table SELECT * FROM tbl ORDER BY clm_num, clm_name LIMIT 0,10; If the column is character it will be sorted alphabetical.
__________________
CodeCall Blog | CodeCall Wiki | Shareware Site | Linux Forum | Write a Blog Don't hesitate to ask any questions that you have! Check out our ASCII Calculator! |
| Sponsored Links |
|
|
![]() |
| Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
| Thread Tools | Search this Thread |
| Display Modes | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| How to calculate the number of pixels in a polygon | extreme | Java Help | 5 | 04-17-2007 10:34 AM |
| Number Cloning | Ronin | Java Help | 3 | 12-21-2006 07:23 AM |
| I need to generate a random number in PHP | dirkfirst | PHP Forum | 7 | 07-05-2006 09:58 PM |
| Number of Lines on a RichText Box | Lop | Managed C++ | 3 | 06-16-2006 05:19 PM |
| Number of files and directories in folder | dirkfirst | PHP Forum | 4 | 05-30-2006 10:06 AM |
| Xav | ........ | 1322.18 |
| MeTh0Dz|Reb0rn | ........ | 1053.7 |
| morefood2001 | ........ | 879.43 |
| John | ........ | 877.37 |
| marwex89 | ........ | 869.98 |
| WingedPanther | ........ | 830.24 |
| Brandon W | ........ | 735.07 |
| chili5 | ........ | 309.39 |
| Steve.L | ........ | 239.84 |
| dcs | ........ | 216.02 |
Goal: 100,000 Posts
Complete: 82%