オブジェクト拡張 (1) オブジェクト拡張 (1) クラス 1 クラスの生成 CREATE TABLE weather ( city varchar(80), temp_lo int, -- low temperature temp_hi int, -- high temperature prcp real, -- precipitation date date ); インスタンスの格納 INSERT INTO weather VALUES ( 'San Francisco', 46, 50, 0.25, '11/27/1994');