RE: FN-FORUM: PHP/MySQL question
date posted 10th August 2003 15:55
> >CREATE TABLE T_Temp SELECT FROM T_Members;
>
> T_Members exists in the database, and I'm pretty certain of
> the syntax.
Select *what* from T_Members?
I'd say that's the problem.
try CREATE TABLE T_Temp SELECT * FROM T_Members;
if that's what you want (all of it).
HTH
Tony