repo.or.cz
/
sqlgg.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
history
|
raw
|
HEAD
try pqxx
[sqlgg.git]
/
test_pqxx
/
test.sql
blob
c4c7fd1f1200c3c4b8efcc5f390b68a129443eb1
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;