devxlogo

Using a SQL Function to Return a Column Number

Using a SQL Function to Return a Column Number

Question:
Is it possible to return a number in a column, using a function, for each row in my result set? For example:

"Select RowNum As Rw, Fname, Birth From Employee." 

I am using Visual Basic 6.0.

Answer:
What you require is possible, and there are a couple of ways for you to do it.

Most RDBMSs have a sequential number generator. In MS SQL the number generator is called the Identity property, which is not really a function, but a datatype.

The first thing you’ll need to take advantage of this built-in function is a column created in your table with the identity property set. Do this in the CREATE statement of the table you’re working on&#151to the effect of:

 create table mytable (mycountingcolumn int identity(1,1))insert mytable default valuesselect * from mytable

You should see a one-column table with a 1 in the first row.

If you already have a table set up and want to number the rows after the fact, you can create a mirror image of your table. Include the identity column definition and select into the new table. The identity column will fill itself up according to the starting point and increment you specified in the CREATE or ALTER TABLE statements.

devxblackblue

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.

About Our Journalist