mirror of https://github.com/rocboss/paopao-ce
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
610 B
17 lines
610 B
--------------------------------------------------------------------------------
|
|
-- file yesql_pg.sql
|
|
-- this sql file just define global sql dml
|
|
-- this sql file contain some PostgreSQL special sql dml
|
|
--------------------------------------------------------------------------------
|
|
|
|
--------------------------------------------------------------------------------
|
|
-- global sql dml
|
|
--------------------------------------------------------------------------------
|
|
|
|
-- name: insert_tag
|
|
-- prepare: stmt
|
|
INSERT INTO @tag (user_id, tag, created_on, modified_on, quote_num)
|
|
VALUES (?, ?, ?, ?, 1)
|
|
RETURNING id;
|
|
|