sql: implicitly convert int<->decimal, require explicit cast for float<->decimal
[sqlgg.git] / test_pqxx / test.sql
blobc4c7fd1f1200c3c4b8efcc5f390b68a129443eb1
1 # @create_employee
2 CREATE TABLE employee (id SERIAL PRIMARY KEY, name TEXT, salary INT);
3 # @insert_employee
4 INSERT INTO employee (name,salary) VALUES;
5 # @select_name
6 SELECT name FROM employee;