12 lines
211 B
SQL
12 lines
211 B
SQL
CREATE or REPLACE VIEW pricequote.target_prices_view AS
|
|
SELECT
|
|
stlc
|
|
,ds
|
|
,chan
|
|
,tier
|
|
,vol::text vol
|
|
,price
|
|
,to_jsonb(math)::text AS math
|
|
FROM
|
|
pricequote.target_prices;
|