WebSanDiego.org Third Birthday : 19 March 2002Photo: charles.loveofcolor.orgArtLung Blog
san diego california usa artlung.com is the personal website of joe crawford

geek out!

this code is equivalent between postgresql and mysql:

mysql:

create table crawford_addresses (
    id int(10) auto_increment primary key, ... );

postgresql:

 create table "crawford_addresses" (
id serial , primary key ("id"), ... );

Leave a comment

This site uses Akismet to reduce spam. Learn how your comment data is processed.