A bozo's blog
Tuesday, April 11, 2017
PostgreSQL: select from values
1
select
co_name,
count
from
(
values
(
'PROUT 24'
, 0), (
'65'
, 0))
as
s(co_name,
count
)
Newer Post
Older Post
Home