(class 2) PostgreSQL Object Relational DataBase Management System クラス(2) クラスの問い合わせ SELECT * FROM weather WHERE city = 'San Francisco' and prcp > 0.0; 問い合わせのリダイレクト SELECT * INTO temp FROM weather; クラス間の結合 SELECT W1.city, W1.temp_lo, W1.temp_hi, W2.city, W2.temp_lo, W2.temp_hi FROM weather W1, weather W2 WHERE W1.temp_lo < W2.temp_lo and W1.temp_hi > W2.temp_hi;