gooderp18绿色标准版
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.

42 lines
5.3KB

  1. <?xml version="1.0" encoding="UTF-8" standalone="no"?>
  2. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><title>dblink_build_sql_delete</title><link rel="stylesheet" type="text/css" href="stylesheet.css" /><link rev="made" href="pgsql-docs@lists.postgresql.org" /><meta name="generator" content="DocBook XSL Stylesheets V1.79.1" /><link rel="prev" href="contrib-dblink-build-sql-insert.html" title="dblink_build_sql_insert" /><link rel="next" href="contrib-dblink-build-sql-update.html" title="dblink_build_sql_update" /></head><body><div xmlns="http://www.w3.org/TR/xhtml1/transitional" class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="5" align="center">dblink_build_sql_delete</th></tr><tr><td width="10%" align="left"><a accesskey="p" href="contrib-dblink-build-sql-insert.html" title="dblink_build_sql_insert">Prev</a> </td><td width="10%" align="left"><a accesskey="u" href="dblink.html" title="F.10. dblink">Up</a></td><th width="60%" align="center">F.10. dblink</th><td width="10%" align="right"><a accesskey="h" href="index.html" title="PostgreSQL 12.4 Documentation">Home</a></td><td width="10%" align="right"> <a accesskey="n" href="contrib-dblink-build-sql-update.html" title="dblink_build_sql_update">Next</a></td></tr></table><hr></hr></div><div class="refentry" id="CONTRIB-DBLINK-BUILD-SQL-DELETE"><div class="titlepage"></div><a id="id-1.11.7.19.22.1" class="indexterm"></a><div class="refnamediv"><h2><span class="refentrytitle">dblink_build_sql_delete</span></h2><p>dblink_build_sql_delete — builds a DELETE statement using supplied values for primary
  3. key field values
  4. </p></div><div class="refsynopsisdiv"><h2>Synopsis</h2><pre class="synopsis">
  5. dblink_build_sql_delete(text relname,
  6. int2vector primary_key_attnums,
  7. integer num_primary_key_atts,
  8. text[] tgt_pk_att_vals_array) returns text
  9. </pre></div><div class="refsect1" id="id-1.11.7.19.22.5"><h2>Description</h2><p>
  10. <code class="function">dblink_build_sql_delete</code> can be useful in doing selective
  11. replication of a local table to a remote database. It builds a SQL
  12. <code class="command">DELETE</code> command that will delete the row with the given
  13. primary key values.
  14. </p></div><div class="refsect1" id="id-1.11.7.19.22.6"><h2>Arguments</h2><div class="variablelist"><dl class="variablelist"><dt><span class="term"><em class="parameter"><code>relname</code></em></span></dt><dd><p>
  15. Name of a local relation, for example <code class="literal">foo</code> or
  16. <code class="literal">myschema.mytab</code>. Include double quotes if the
  17. name is mixed-case or contains special characters, for
  18. example <code class="literal">"FooBar"</code>; without quotes, the string
  19. will be folded to lower case.
  20. </p></dd><dt><span class="term"><em class="parameter"><code>primary_key_attnums</code></em></span></dt><dd><p>
  21. Attribute numbers (1-based) of the primary key fields,
  22. for example <code class="literal">1 2</code>.
  23. </p></dd><dt><span class="term"><em class="parameter"><code>num_primary_key_atts</code></em></span></dt><dd><p>
  24. The number of primary key fields.
  25. </p></dd><dt><span class="term"><em class="parameter"><code>tgt_pk_att_vals_array</code></em></span></dt><dd><p>
  26. Values of the primary key fields to be used in the resulting
  27. <code class="command">DELETE</code> command. Each field is represented in text form.
  28. </p></dd></dl></div></div><div class="refsect1" id="id-1.11.7.19.22.7"><h2>Return Value</h2><p>Returns the requested SQL statement as text.</p></div><div class="refsect1" id="id-1.11.7.19.22.8"><h2>Notes</h2><p>
  29. As of <span class="productname">PostgreSQL</span> 9.0, the attribute numbers in
  30. <em class="parameter"><code>primary_key_attnums</code></em> are interpreted as logical
  31. column numbers, corresponding to the column's position in
  32. <code class="literal">SELECT * FROM relname</code>. Previous versions interpreted the
  33. numbers as physical column positions. There is a difference if any
  34. column(s) to the left of the indicated column have been dropped during
  35. the lifetime of the table.
  36. </p></div><div class="refsect1" id="id-1.11.7.19.22.9"><h2>Examples</h2><pre class="screen">
  37. SELECT dblink_build_sql_delete('"MyFoo"', '1 2', 2, '{"1", "b"}');
  38. dblink_build_sql_delete
  39. ---------------------------------------------
  40. DELETE FROM "MyFoo" WHERE f1='1' AND f2='b'
  41. (1 row)
  42. </pre></div></div><div class="navfooter"><hr /><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="contrib-dblink-build-sql-insert.html">Prev</a> </td><td width="20%" align="center"><a accesskey="u" href="dblink.html">Up</a></td><td width="40%" align="right"> <a accesskey="n" href="contrib-dblink-build-sql-update.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">dblink_build_sql_insert </td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top"> dblink_build_sql_update</td></tr></table></div></body></html>
上海开阖软件有限公司 沪ICP备12045867号-1