“Variables PSQL Qith” Código de respuesta

Variable PostgreSQL en la consulta

-- 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

Variables 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

Respuestas similares a “Variables PSQL Qith”

Preguntas similares a “Variables PSQL Qith”

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código