student.sql 229 B

1234567891011
  1. CREATE TABLE student (
  2. name text,
  3. age int4,
  4. --location point,
  5. gpa float8
  6. );
  7. INSERT INTO student VALUES
  8. ('fred', 28, /*(3.1,-1.5), */ 3.70000000000000020e+00),
  9. ('larry', 60, /*(21.8,4.9), */ 3.10000000000000010e+00);