devxlogo

Informix Version 7 SQL Query

Question:
How do I find the top n records within a table for version 7? I have seen some similar SQL queries but cannot adapt them to version 7.

Answer:
SQL does not have a “top” type of function, meaning that you can’t write something like:

SELECT top 5 account_name, sales_amount fromsales_table

You can write a SQL statement like this:

SELECT account_name, sales_amount FROM 
sales_table order by sales_amount DESC

Then you could put it in a cursor and just select the first five rows, but that would have to be done programmatically.

Charlie has over a decade of experience in website administration and technology management. As the site admin, he oversees all technical aspects of running a high-traffic online platform, ensuring optimal performance, security, and user experience.

See also  Five Early Architecture Decisions That Quietly Get Expensive

About Our Editorial Process

At DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere.

See our full editorial policy.