rastkocvetkovic
Programmer
How to output first 10 records in 2000 record table... I'm confused because of mySQL LIMIT 10, access' TOP 10 and so on. Please help ASAP!
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
select foo, bar
from yourtable xx
where 10 >
( select count(*)
from yourtable
where foo > xx.foo )