> Can I also use a select statement in a create statement. Something like this:
> 
> create table mytable
> (
>       id int not null primary key (select max(id) from mytable2),
>       name varchar(255)
> );
> 
> is this possible or is there an other way to do something like this?
> 
> ilyas
> 
> filter: mysql
> 
create table ttt select a,b,c from abc;



---------------------------------------------------------------------
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