Question : Select first 50 records which meet the criteria

Is there a way to Select first 50 records which meet the criteria in the where clause of a sql statement? If so, how?

Answer : Select first 50 records which meet the criteria

you mean:

1:
2:
3:
SELECT TOP 50 ...
  FROM  ...
WHERE ...
Random Solutions  
 
programming4us programming4us