View Single Post

  #2 (permalink)  
Old 09-08-2006
Gordon Burditt
 
Posts: n/a
Default Re: create tmp table - how to use?

>One of the user privileges is 'create_tmp_table'. Is there any build-in
>function to create temporary table?


How about:

CREATE TEMPORARY TABLE foo (
spammer_id int not null primary key,
spammer_ip varchar(15) not null
);

Reply With Quote