Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl Monk, Perl Meditation
 
PerlMonks  

is that standard though?

by cebrown (Pilgrim)
on Apr 30, 2002 at 14:04 UTC ( [id://163064]=note: print w/replies, xml ) Need Help??


in reply to Re: Re: The fine art of database programming
in thread The fine art of database programming

I believe that LIMIT is a DBMS-specific extension. For example...
in MS SQL Server:
SELECT TOP 10 col FROM table
in IBM DB2:
SELECT col FROM table FETCH FIRST 10 ROWS ONLY
I think the only platform independent way to do this is:
SELECT col FROM table A WHERE 10 > (SELECT COUNT(*) FROM table B WHERE A.col < B.col) ORDER BY col DESC

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://163064]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others imbibing at the Monastery: (3)
As of 2024-04-26 03:47 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found