aboutsummaryrefslogtreecommitdiffstats
path: root/yql/essentials/tests/postgresql/initscripts/student.sql
blob: 4f4b2efdd60eb74d7e3221187f5c4c274d2457eb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
CREATE TABLE student (
	name 		text,
	age			int4,
	--location 	point,
	gpa 		float8
);

INSERT INTO student VALUES
('fred',	28,	/*(3.1,-1.5), */	3.70000000000000020e+00),
('larry',	60,	/*(21.8,4.9), */	3.10000000000000010e+00);