VALUEIN
This section contains reference documentation for the VALUEIN function.
Signature
Usage Examples
SELECT VALUEIN(RandomAirports, 'SEA') as airport, count(*)
FROM airlineStats
WHERE RandomAirports = 'SEA'
GROUP BY airportairport
count(*)
SELECT VALUEIN(RandomAirports, 'SEA', 'PSC') as airport, count(*)
FROM airlineStats
WHERE RandomAirports IN ('SEA', 'PSC')
GROUP BY airportairport
count(*)
Last updated
Was this helpful?

