This week's book giveaway is in the
Agile and other Processes
forum.
We're giving away four copies of
The Mikado Method
and have Ola Ellnestam and Daniel Brolund on-line!
See
this thread
for details.
A friendly place for programming greenhorns!
Big Moose Saloon
Search
|
Java FAQ
|
Recent Topics
Register / Login
Win a copy of
The Mikado Method
this week in the
Agile and other Processes
forum!
JavaRanch
»
Java Forums
»
Databases
»
JDBC
Author
how to create sequence in mysql
krish bhadragiri
Greenhorn
Joined: Apr 17, 2007
Posts: 13
posted
Apr 17, 2007 00:26:00
0
please send me the syntax for creating the sequence in mysql and how that sequence be linked to different fields of different tables.
Jeff Ash
Greenhorn
Joined: Apr 07, 2007
Posts: 11
posted
Apr 17, 2007 11:46:00
0
MySQL doesn't use sequences. You will use AUTO_INCREMENT fields. The following CREATE TABLE statement shows an example:
CREATE TABLE person (
PERSON_ID int(10) NOT NULL auto_increment,
FIRST_NAME varchar(50) default NULL,
MIDDLE_NAME varchar(50) default NULL,
LAST_NAME varchar(50) default NULL,
PRIMARY KEY (PERSON_ID)
)
Then when you insert into the table just don't specify a value for the PERSON_ID:
INSERT INTO person (first_name, last_name) VALUES ('John', 'Doe')
Jeff Ash<br /><a href="http://www.excellentiasoftware.com" target="_blank" rel="nofollow">Excellentia Software</a>
I agree. Here's the link:
http://zeroturnaround.com/jrebel
subject: how to create sequence in mysql
Similar Threads
How Retrieve information about a file.
Using JDBC.... I have no clue what I'm doing.
MySQL
Is there a generic way to get sequence
Alternative flows on sequence diagrams in part 2...
All times are in JavaRanch time: GMT-6 in summer, GMT-7 in winter