79437515

Date: 2025-02-13 19:22:36
Score: 0.5
Natty:
Report link

Just naturally paste your first query inside the parenthesis, as in:

with v as 
(select * from (values ('a','b'),('c','d')) v (e,f))
select e from v where f='d';
Reasons:
  • Low length (1):
  • Has code block (-0.5):
Posted by: Guillaume Outters