Asaf Maruf wrote:
> 
>   Dear all on list
> 
> How can i specify two columns together as primary key for a table.
> 
> Using create table test
> (increment int , id int not null primary key, date not null primary key, name 
>char(20) );
> 
> doesn't work.
> 
> Is it possible that one column is text and other is integer?
> 
> Help would be appreciated.
> 
> Thanks in advance
> 
> Asaf Maruf

create table test
(increment int, id int not null, datefield date not null, name char(20),
primary key (id,date))

---------------------------------------------------------------------
Before posting, please check:
   http://www.mysql.com/manual.php   (the manual)
   http://lists.mysql.com/           (the list archive)

To request this thread, e-mail <[EMAIL PROTECTED]>
To unsubscribe, e-mail <[EMAIL PROTECTED]>
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php

Reply via email to