DATASET QUERY DROP TABLE IF EXISTS location_1d; CREATE TABLE location_1d ( x1 integer , x2 integer ); INSERT INTO location_1d VALUES ( 5 , 10) , (10 , 5) , (-2 , 4) , ( 3 , 3) , ( 0 , 1) ; 절대값, 제곱근, 루트 계산(ABS, POWER, SQRT) ABS는 절대값을 계산하는 함수이며, POWER는 제곱함수, SQRT는 제곱근을 구하는 함수이다. select abs(x1 - x2) ,power(x1 - x2, 2) as Squared ,sqrt(power(x1 - x2, 2)) as Squared_root from location_1d; DATASET2 QU..