create table test(id integer, r real, n numeric);
insert into test(id, r, n) values (1, 0.1, 0.1), (2, 1.0/3, 1.0/3);
以下の説明から適切なものをすべて選びなさい。
select r*10 from test where id = 1 は必ず 1 を返す。
select n*10 from test where id = 1 は必ず 1 を返す。
select r*3 from test where id = 2 は必ず 1 を返す。
select n*3 from test where id = 2 は必ず 1 を返す。
select r - n from test; はどの行も0を返す。
© EDUCO All Rights Reserved.