Wrox Programmer Forums
Go Back   Wrox Programmer Forums > Database > SQL Language
|
SQL Language SQL Language discussions not specific to a particular RDBMS program or vendor.
Welcome to the p2p.wrox.com Forums.

You are currently viewing the SQL Language section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
 
Old November 22nd, 2003, 07:23 AM
Authorized User
 
Join Date: Jun 2003
Posts: 62
Thanks: 0
Thanked 0 Times in 0 Posts
Default How to write in SQL language for auto running numb

hi,

I would like to know how to write in SQL if my table need a auto runing number for each record? let say

auto ID item code qty
1 A100 10
2 A101 5
3 A102 13


how to write in SQL language to get a auto running number on my table?


thanks
 
Old November 22nd, 2003, 12:37 PM
planoie's Avatar
Friend of Wrox
 
Join Date: Aug 2003
Posts: 5,407
Thanks: 0
Thanked 16 Times in 16 Posts
Default

What is your database platform? There are certain ways that make this completely automatically and less prone to problems if you have a db platform that supports it (MS Access, MS-SQL Server).

Here is one way you could do this:

INSERT INTO myTable(autoIDColumn,...) VALUES(
    (SELECT MAX(autoIDColumn)+1 FROM myTable)
    , ...)

Peter
------------------------------------------------------
Work smarter, not harder.





Similar Threads
Thread Thread Starter Forum Replies Last Post
SQL Server -French Language prabhakaran SQL Server 2000 3 December 14th, 2006 03:13 PM
Macedonian Language in SQL database dimeanel SQL Server 2000 2 April 20th, 2006 09:46 AM
Auto Running a script. rupen Classic ASP Basics 3 July 19th, 2005 06:14 PM
SQL Language khng SQL Language 3 November 22nd, 2004 08:22 PM
Auto genetating SQL Stephen.Rice SQL Server 2000 1 June 8th, 2004 09:17 AM





Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.