Yurttas/PL/DBL/postgres/F/01/PC/q01.sql
Jump to navigation
Jump to search
1/*
2REM
3REM q01.sql
4REM
5REM What PC models have a speed of at least 150?
6REM
7*/
8
9SELECT current_schema();
10SET search_path to "pc";
11
12SELECT model
13FROM PC
14WHERE speed>=150;