--- Demidem Mohamed Amine <[EMAIL PROTECTED]> wrote:
> hello,
> 
> Can anyone help me create a function that creates a table:

create function create_table( text ) returns integer as '
declare
  p_tab alias for $1;
  v_exec text;
begin
  v_exec := ''create table '' || p_tab || ''( id integer )'';
  execute v_exec;
end;
' language 'plpgsql'; 



__________________________________
Do you Yahoo!?
Yahoo! Calendar - Free online calendar with sync to Outlook(TM).
http://calendar.yahoo.com

---------------------------(end of broadcast)---------------------------
TIP 9: most folks find a random_page_cost between 1 or 2 is ideal

Reply via email to