What is the SQL command to limite the number of rows being displayed?
Select * from cust where name=smith;
The above sql statemenat generates 500 records. But I only want the first 20. Any idea how I can narrow the results without adding extra criteria? Any help would be appreciated. Thanks.
Select * from cust where name=smith;
The above sql statemenat generates 500 records. But I only want the first 20. Any idea how I can narrow the results without adding extra criteria? Any help would be appreciated. Thanks.