“Zmienne PSQL QITH” Kod odpowiedzi

Zmienna PostgreSQL w zapytaniu

-- with myVar as (select "any value really")
-- 		then, to get access to the value stored in this construction, you do
-- 			(select * from myVar)
-- for example

with var as (select 123)    
... where id = (select * from var)

-- You could event re-cast the value (e.g. from INT to VARCHAR) 
with var as (select 123)    
... where id = ((select * from var)::VARCHAR)
Muddy Moose

Zmienne PSQL QITH

WITH vars AS (SELECT 42 AS answer, 3.14 AS appr_pi)
SELECT t.*, vars.answer, t.radius*vars.appr_pi
FROM table AS t, vars;
Obnoxious Oystercatcher

Odpowiedzi podobne do “Zmienne PSQL QITH”

Pytania podobne do “Zmienne PSQL QITH”

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu