How To Create Temporary Table inside a function

Поиск
Список
Период
Сортировка
От Rehan Saleem
Тема How To Create Temporary Table inside a function
Дата
Msg-id 1330687383.77274.YahooMailNeo@web121602.mail.ne1.yahoo.com
обсуждение исходный текст
Ответы Re: How To Create Temporary Table inside a function  (Philip Couling <phil@pedal.me.uk>)
Список pgsql-sql
hi everyone ,
how can i create temp table say table1 with three column of types varchar , int and int, inside the function body and if that same table already exist it should drop that already existing table(table1) , and on every run this process should run. and how can i insert values from postgresql view say vwfirst to this table(table1)

Here is the MS-SQL code for this process but  i want to know how can this be done in postgresql

if object_id('tempdb..#tblTFSites1') is not null
  drop table tempdb..#tblTFSites1

create table #tblTFSites1(
Chr varchar(50) NULL,
Start int NULL,
[End] int NULL
)

INSERTION PROCESS

INSERT INTO #tblTFSites1 (Chr, Start,[End])
Select Chr_U, Start_U, End_U from vwChrCompareSites where KBId=@ID and UserDataDetailId=@UserDataDetailId 
and bpOverlap >= @bpOverlap and (CentreDistance <= @CentreDistance or @CentreDistance=1)


В списке pgsql-sql по дате отправления:

Предыдущее
От: Adrian Klaver
Дата:
Сообщение: Re: Change Ownership Recursively
Следующее
От: Philip Couling
Дата:
Сообщение: Re: How To Create Temporary Table inside a function