the syntax? hmmm, how shall i put this politely...
it's in the manual -->
http://www.mysql.com/doc/en/CREATE_TABLE.html
a specific example:
create table yourtable
( id integer
, foo varchar(3) not null
, bar varchar(4) not null
, unique index foobar (foo, bar)
)
as for the second, no, i do not think it's possible
i could be wrong, though
