mirror of
https://github.com/postgres/postgres.git
synced 2026-04-22 22:59:54 -04:00
Add INSERT statement to example so that it can be reproduced
from John Gage
This commit is contained in:
parent
8dad931f4e
commit
c12c561ba0
1 changed files with 3 additions and 1 deletions
|
|
@ -1,4 +1,4 @@
|
|||
<!-- $PostgreSQL: pgsql/doc/src/sgml/xfunc.sgml,v 1.149 2010/05/30 18:10:40 tgl Exp $ -->
|
||||
<!-- $PostgreSQL: pgsql/doc/src/sgml/xfunc.sgml,v 1.149.2.1 2010/07/25 08:30:41 petere Exp $ -->
|
||||
|
||||
<sect1 id="xfunc">
|
||||
<title>User-Defined Functions</title>
|
||||
|
|
@ -293,6 +293,8 @@ CREATE TABLE emp (
|
|||
cubicle point
|
||||
);
|
||||
|
||||
INSERT INTO emp VALUES ('Bill', 4200, 45, '(2,1)');
|
||||
|
||||
CREATE FUNCTION double_salary(emp) RETURNS numeric AS $$
|
||||
SELECT $1.salary * 2 AS salary;
|
||||
$$ LANGUAGE SQL;
|
||||
|
|
|
|||
Loading…
Reference in a new issue