RE: Re: CREATE TABLE Inv_Id

2006-10-19 Thread Jerry Schwartz
Original Message- > From: Martijn Tonies [mailto:[EMAIL PROTECTED] > Sent: Thursday, October 19, 2006 9:45 AM > To: Dan Buettner; Scott Hamm > Cc: Mysql > Subject: Re: Re: CREATE TABLE Inv_Id > > > > > > Scott, what's wrong with 'PRIMARY

Re: Re: CREATE TABLE Inv_Id

2006-10-19 Thread Martijn Tonies
> Scott, what's wrong with 'PRIMARY KEY' ? A PRIMARY KEY has nothing to do with the "uniqueidentifier" datatype. A "uniqueidentifier" is a GUID. Martijn Tonies Database Workbench - development tool for MySQL, and more! Upscene Productions http://www.upscene.com My thoughts: http://blog.upscen

Re: Re: CREATE TABLE Inv_Id

2006-10-19 Thread Dan Buettner
Scott, what's wrong with 'PRIMARY KEY' ? Dan On 10/19/06, Scott Hamm <[EMAIL PROTECTED]> wrote: Wish MySQL would have something like what Microsoft use, "uniqueidentifier" as datatype. -- MySQL General Mailing List For list archives: http://lists.mysql.com/mysql To unsubscribe:http://li

Re: CREATE TABLE Inv_Id

2006-10-19 Thread Scott Hamm
Wish MySQL would have something like what Microsoft use, "uniqueidentifier" as datatype.

Re: CREATE TABLE Inv_Id

2006-10-16 Thread Scott Hamm
Thanks! On 10/16/06, Gabriel PREDA <[EMAIL PROTECTED]> wrote: I would try: CREATE TABLE Inv_Id ( ID INT(12) UNSIGNED ZEROFILL AUTO_INCREMENT PRIMARY KEY, MID INT NOT NULL, FOREIGN (MID) REFERENCES 'Model' (ID) ); Note the UNSIGNED an

Re: CREATE TABLE Inv_Id

2006-10-16 Thread Gabriel PREDA
I would try: CREATE TABLE Inv_Id ( ID INT(12) UNSIGNED ZEROFILL AUTO_INCREMENT PRIMARY KEY, MID INT NOT NULL, FOREIGN (MID) REFERENCES 'Model' (ID) ); Note the UNSIGNED and ZEROFILL flags ! -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- Gabriel PREDA Senior Web Developer -- MyS

Re: CREATE TABLE Inv_Id

2006-10-16 Thread Rolando Edwards
(casecode prefix, a manufacturers id, a partnumber, and a check digit) to the table definition. - Original Message - From: Gerald L. Clark <[EMAIL PROTECTED]> To: Scott Hamm <[EMAIL PROTECTED]> Cc: Mysql Sent: Monday, October 16, 2006 2:31:47 PM GMT-0500 US/Eastern Subject: R

Re: CREATE TABLE Inv_Id

2006-10-16 Thread Scott Hamm
10/16/06, Gerald L. Clark <[EMAIL PROTECTED]> wrote: Scott Hamm wrote: > I'm trying to create a table as follows: > > CREATE TABLE Inv_Id ( > ID INT(12) AUTO_INCREMENT PRIMARY KEY, > MID INT NOT NULL, > FOREIGN (MID) REFERENCES 'Model' (ID) > ); > &g

Re: CREATE TABLE Inv_Id

2006-10-16 Thread Dan Buettner
What you can do is left pad it with zeros whenever you select it: select LPAD(id,12,0) from Inv_Id order by id; HTH, Dan On 10/16/06, Scott Hamm <[EMAIL PROTECTED]> wrote: I'm trying to create a table as follows: CREATE TABLE Inv_Id ( ID INT(12) AUTO_INCREMENT PRIMARY KEY, MID INT N

Re: CREATE TABLE Inv_Id

2006-10-16 Thread Gerald L. Clark
Scott Hamm wrote: I'm trying to create a table as follows: CREATE TABLE Inv_Id ( ID INT(12) AUTO_INCREMENT PRIMARY KEY, MID INT NOT NULL, FOREIGN (MID) REFERENCES 'Model' (ID) ); How do I make ID to start out as '0001' for UPC barcode assignment? UPC ba

CREATE TABLE Inv_Id

2006-10-16 Thread Scott Hamm
I'm trying to create a table as follows: CREATE TABLE Inv_Id ( ID INT(12) AUTO_INCREMENT PRIMARY KEY, MID INT NOT NULL, FOREIGN (MID) REFERENCES 'Model' (ID) ); How do I make ID to start out as '0001' f