Michael Satterwhite <[EMAIL PROTECTED]> wrote:
> -BEGIN PGP SIGNED MESSAGE-
> Hash: SHA1
>
> On Monday 21 July 2003 04:14, Egor Egorov wrote:
>> Michael Satterwhite <[EMAIL PROTECTED]> wrote:
>> > I'm trying to add a foreign key to a table. All tables are INNODB. Table
>> > a has following
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1
On Monday 21 July 2003 04:14, Egor Egorov wrote:
> Michael Satterwhite <[EMAIL PROTECTED]> wrote:
> > I'm trying to add a foreign key to a table. All tables are INNODB. Table
> > a has following partial Definition:
> >
> > TableA
> > ( Fld1 int Primary
Michael Satterwhite <[EMAIL PROTECTED]> wrote:
>
> I'm trying to add a foreign key to a table. All tables are INNODB. Table a has
> following partial Definition:
>
> TableA
> ( Fld1 int Primary Key,...
> )
>
> TableB
> (Fld2 int Primary Key,
> Fld1 int not null, ...
> )
>
> I use the following
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1
I'm trying to add a foreign key to a table. All tables are INNODB. Table a has
following partial Definition:
TableA
( Fld1 int Primary Key,...
)
TableB
(Fld2 int Primary Key,
Fld1 int not null, ...
)
I use the following Statement:
Alter Ta