in reply to Re: Postgres to MySQL row ID
in thread Postgres to MySQL row ID

Thanks, Luckily the design had not yet been implemented. What does the above mean, Make it and index? And will the autoincrement field be given a value for every row created without specifying it to do so?

Replies are listed 'Best First'.
Re^3: Postgres to MySQL row ID
by waswas-fng (Curate) on Aug 13, 2004 at 19:19 UTC
    You will need to read up on mysql before you dig to far into this project. auto inc type columns will auto increment the value for new inserts this combined with defining the column as unique and indexing will give you what you want.


    -Waswas