-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbki-example.html
More file actions
17 lines (17 loc) · 3.86 KB
/
bki-example.html
File metadata and controls
17 lines (17 loc) · 3.86 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!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>67.4. 例</title><link rel="stylesheet" type="text/css" href="stylesheet.css" /><link rev="made" href="pgsql-docs@postgresql.org" /><meta name="generator" content="DocBook XSL Stylesheets V1.79.1" /><link rel="prev" href="bki-structure.html" title="67.3. BKIファイルのブートストラップの構成" /><link rel="next" href="planner-stats-details.html" title="第68章 プランナは統計情報をどのように使用するか" /><meta name="viewport" content="width=device-width,initial-scale=1.0" /></head><body><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="4" align="center"><a accesskey="h" href="index.html">PostgreSQL 10.5文書</a></th></tr><tr><td width="10%" align="left"></td><td width="10%" align="left"></td><td width="60%" align="center"><a href="bki.html" title="第67章 BKIバックエンドインタフェース">第67章 <acronym class="acronym">BKI</acronym>バックエンドインタフェース</a></td><td width="20%" align="right"><div class="actions"><a class="issue" title="github" href="https://github.com/pgsql-jp/jpug-doc/issues/new?title=version 10.5 bki-example.html">誤訳等の報告
</a></div></td></tr><tr><td width="10%" align="left"><a accesskey="p" href="bki-structure.html" title="67.3. BKIファイルのブートストラップの構成">前へ</a> </td><td width="10%" align="left"><a accesskey="u" href="bki.html" title="第67章 BKIバックエンドインタフェース">上へ</a></td><td width="60%" align="center">67.4. 例</td><td width="20%" align="right"> <a accesskey="n" href="planner-stats-details.html" title="第68章 プランナは統計情報をどのように使用するか">次へ</a></td></tr></table><hr /></div><div class="sect1" id="BKI-EXAMPLE"><div class="titlepage"><div><div><h2 class="title" style="clear: both">67.4. 例</h2></div></div></div><span class="original">
<title>Example</title>
</span><p><span class="original">
The following sequence of commands will create the
table <literal>test_table</literal> with OID 420, having two columns
<literal>cola</literal> and <literal>colb</literal> of type
<type>int4</type> and <type>text</type>, respectively, and insert
two rows into the table:
</span>次の一連のコマンドは、それぞれ<code class="type">int4</code>型と<code class="type">text</code>型の2つの列、<code class="literal">cola</code>と<code class="literal">colb</code>を持ち、OID 420 が付いた<code class="literal">test_table</code>テーブルを作成し、そして2つの行をテーブルに挿入します。
</p><pre class="programlisting">create test_table 420 (cola = int4, colb = text)
open test_table
insert OID=421 ( 1 "value1" )
insert OID=422 ( 2 _null_ )
close test_table</pre><p>
</p></div><div class="navfooter"><hr /><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="bki-structure.html">前へ</a> </td><td width="20%" align="center"><a accesskey="u" href="bki.html">上へ</a></td><td width="40%" align="right"> <a accesskey="n" href="planner-stats-details.html">次へ</a></td></tr><tr><td width="40%" align="left" valign="top">67.3. <acronym class="acronym">BKI</acronym>ファイルのブートストラップの構成 </td><td width="20%" align="center"><a accesskey="h" href="index.html">ホーム</a></td><td width="40%" align="right" valign="top"> 第68章 プランナは統計情報をどのように使用するか</td></tr></table></div></body></html>