You are viewing a plain text version of this content. The canonical link for it is here.
Posted to general@db.apache.org by rh...@apache.org on 2013/03/13 14:54:25 UTC

svn commit: r854277 [34/44] - in /websites/production/db/content/derby: docs/10.4/ja_JP/ docs/10.4/ja_JP/getstart/ docs/10.4/ja_JP/images/ docs/10.4/ja_JP/ref/ manuals/

Added: websites/production/db/content/derby/docs/10.4/ja_JP/ref/rrefsqlj24513.html
==============================================================================
--- websites/production/db/content/derby/docs/10.4/ja_JP/ref/rrefsqlj24513.html (added)
+++ websites/production/db/content/derby/docs/10.4/ja_JP/ref/rrefsqlj24513.html Wed Mar 13 13:54:17 2013
@@ -0,0 +1,162 @@
+<!--
+  Licensed to the Apache Software Foundation (ASF) under one or more
+  contributor license agreements.  See the NOTICE file distributed with
+  this work for additional information regarding copyright ownership.
+  The ASF licenses this file to You under the Apache License, Version 2.0
+  (the "License"); you may not use this file except in compliance with
+  the License.  You may obtain a copy of the License at
+
+      http://www.apache.org/licenses/LICENSE-2.0
+
+  Unless required by applicable law or agreed to in writing, software
+  distributed under the License is distributed on an "AS IS" BASIS,
+  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+  See the License for the specific language governing permissions and
+  limitations under the License.
+-->
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html lang="ja" xml:lang="ja">
+<head>
+<meta content="text/html; charset=utf-8" http-equiv="Content-Type" />
+<meta name="copyright" content="(C) Copyright 2005" />
+<meta name="DC.rights.owner" content="(C) Copyright 2005" />
+<meta content="public" name="security" />
+<meta content="index,follow" name="Robots" />
+<meta http-equiv="PICS-Label" content='(PICS-1.1 "http://www.icra.org/ratingsv02.html" l gen true r (cz 1 lz 1 nz 1 oz 1 vz 1) "http://www.rsac.org/ratingsv01.html" l gen true r (n 0 s 0 v 0 l 0) "http://www.classify.org/safesurf/" l gen true r (SS~~000 1))' />
+<meta content="reference" name="DC.Type" />
+<meta name="DC.Title" content="CREATE TABLE 文" />
+<meta content="CREATE TABLE statement, CREATE TABLE, SQL statements, tables, creating" name="DC.subject" />
+<meta content="CREATE TABLE statement, CREATE TABLE, SQL statements, tables, creating" name="keywords" />
+<meta scheme="URI" name="DC.Relation" content="crefsqlj95081.html" />
+<meta scheme="URI" name="DC.Relation" content="rrefcreatefunctionstatement.html" />
+<meta scheme="URI" name="DC.Relation" content="rrefsqlj20937.html" />
+<meta scheme="URI" name="DC.Relation" content="rrefcreateprocedurestatement.html" />
+<meta scheme="URI" name="DC.Relation" content="rrefsqlj31580.html" />
+<meta scheme="URI" name="DC.Relation" content="rrefsqljcreatesynonym.html" />
+<meta scheme="URI" name="DC.Relation" content="rrefsqlj43125.html" />
+<meta scheme="URI" name="DC.Relation" content="rrefsqlj15446.html" />
+<meta scheme="URI" name="DC.Relation" content="rrefsqlj30540.html" />
+<meta scheme="URI" name="DC.Relation" content="rrefsqlj37836.html" />
+<meta content="XHTML" name="DC.Format" />
+<meta content="rrefsqlj24513" name="DC.Identifier" />
+<meta content="ja" name="DC.Language" />
+<link href="/export/home/tmp/derby/docs-10.4/out/ja_JP/reftemp/commonltr.css" type="text/css" rel="stylesheet" />
+<title>CREATE TABLE 文</title>
+</head>
+<body id="rrefsqlj24513"><a name="rrefsqlj24513"><!-- --></a>
+
+
+<h1 class="topictitle1">CREATE TABLE 文</h1>
+
+
+<div>
+<div class="section"> <p>CREATE TABLE文により表を作成します。表には列および制約があって、情報が沿うべき規則が決められています。表ごとの制約は列の集合ないしは列を指定します。列にはデータ型が決まっていて、列の制約(列ごとの制約)があります。</p>
+
+<div class="p">表や<a href="rrefattrib26867.html#rrefattrib26867">データベースの所有者</a>は自動的に以下の権限を持ち、また他のユーザにこれらの権限を与える事ができます。<ul>
+<li>INSERT</li>
+
+<li>SELECT</li>
+
+<li>REFERENCES</li>
+
+<li>TRIGGER</li>
+
+<li>UPDATE</li>
+
+</ul>
+これらの権限を表やデータベースの所有者から剥奪することはできません。</div>
+
+<p>制約についての情報は、<a href="rrefsqlj13590.html#rrefsqlj13590">CONSTRAINT 節</a>を参照してください。</p>
+
+<p>列には既定値を与えることができます。既定値とは値が指定されなかったとき、列に挿入される値です。明示されない場合列の既定値はNULLです。詳細は<a href="rrefsqlj30540.html#rrefsqlj30540__sqlj64478">列の既定値</a>を参照してください。</p>
+
+<p><samp class="codeph">SYSCS_UTIL.SYSCS_SET_DATABASE_PROPERTY</samp>というシステムの手続を呼ぶことで、ページサイズのような記録の属性を設定することができます。</p>
+
+<p>表を限定する場合、スキーマ名は<em>SYS</em>で始まってはなりません。</p>
+</div>
+
+<div class="section"><h4 class="sectiontitle">構文</h4>
+    <p>CREATE TABLEには二通りの書き方があります。これは、列の定義と制約を指定しようとするか、問い合わせ式の結果に基づき列を定義するかによります。</p>
+
+<pre><strong>CREATE TABLE <em><a href="rreftablename.html#rreftablename">表名</a></em></strong>
+    ( {<em><a href="rrefsqlj30540.html#rrefsqlj30540">列定義</a></em> | <em><a href="rrefsqlj42154.html#rrefsqlj42154">表毎制約</a></em>}
+    [ , {<em><a href="rrefsqlj30540.html#rrefsqlj30540">列定義</a></em> | <em><a href="rrefsqlj42154.html#rrefsqlj42154">表毎制約</a></em>} ] * )
+  |
+      [ ( <em><a href="rrefsimplecolumnname.html#rrefsimplecolumnname">列名</a></em> [ , <em><a href="rrefsimplecolumnname.html#rrefsimplecolumnname">列名</a></em> ] * ) ]
+      <strong>AS</strong> <em>問い合わせ式</em>
+      <strong>WITH NO DATA</strong>
+   }
+
+</pre>
+ </div>
+
+<div class="example"><h4 class="sectiontitle">例</h4><pre><strong>CREATE TABLE HOTELAVAILABILITY
+     (HOTEL_ID INT NOT NULL, BOOKING_DATE DATE NOT NULL,
+	ROOMS_TAKEN INT DEFAULT 0, PRIMARY KEY (HOTEL_ID, BOOKING_DATE));
+<span>-- 表で主キーを定義することで、2列からなる主キーを定義できます。</span>
+PRIMARY KEY (hotel_id, booking_date))
+<span>-- 識別子列の属性を、INTEGERの列に与え、
+-- さらに列に主キー制約を定義します。</span>
+CREATE TABLE PEOPLE
+	(PERSON_ID INT NOT NULL GENERATED ALWAYS AS IDENTITY
+	CONSTRAINT PEOPLE_PK PRIMARY KEY, PERSON VARCHAR(26));
+<span>-- 識別子列の属性を、SMALLINTの列に与え、
+-- 初期値を5に増分値を5に設定します。</span>
+CREATE TABLE GROUPS
+	(GROUP_ID SMALLINT NOT NULL GENERATED ALWAYS AS IDENTITY 
+	(START WITH 5, INCREMENT BY 5), ADDRESS VARCHAR(100), PHONE VARCHAR(15));</strong></pre>
+<div class="note"><span class="notetitle">注: </span>さまざまな制約を使った、より多くのCREATE TABLE文の例が<a href="rrefsqlj13590.html#rrefsqlj13590">CONSTRAINT 節</a>にあります。</div>
+ </div>
+
+<div class="section"><h4 class="sectiontitle">CREATE TABLE ... AS ... </h4>
+    <p>もう一つのCREATE TABLE文の書き方は、問い合わせで列の名前と/あるいは列のデータ型を指定します。問い合わせ結果の列は、新しい表の各列を作成するときにモデルとして利用されます。</p>
+
+<p>新しい表に列名が指定されなかった場合、問い合わせの結果の全列が、新しい表に同じ名前と対応するデータ型で作成されます。
+ひとつあるいはそれ以上の列の名前が新しい表に指定された場合、問い合わせ式の結果には同数の列が無ければなりません。問い合わせ結果の列のデータ型は新しい表の対応する列に引き継がれます。</p>
+
+<p>WITH NO DATA節は問い合わせ結果行のデータは使われず、列の名称と型だけが利用されることを表します。
+WITH NO DATAは<strong>必ず</strong>指定してください。今後のリリースにて、DerbyでもWITH DATAを指定して、問い合わせ式の結果を新規作成された表に挿入するように出来るようになるかもしれません。しかし現在のリリースでは、WITH NO DATAの文しか処理されません。</p>
+
+</div>
+
+<div class="example"><h4 class="sectiontitle">例</h4>
+    <pre><strong>
+<span>-- 既存の表の全列とデータ型を使って新しい表を作成する。</span>
+CREATE TABLE T3 AS SELECT * FROM T1 WITH NO DATA;
+<span>-- 列に名前を指定して表を作成する。そのデータ型は既存表の列に沿ったものとする。</span>
+CREATE TABLE T3 (A,B,C,D,E) AS SELECT * FROM T1 WITH NO DATA;
+<span>-- 列に名前を指定して表を作成する。そのデータ型は既存表の指定された列のデータ型に沿ったものとする。</span>
+CREATE TABLE T3 (A,B,C) AS SELECT V,DP,I FROM T1 WITH NO DATA;
+<span>-- この例では問い合わせ式の結果にある列に名前がないが、そのデータ型は新規作成された表にて対応する列のデータ型となる。</span>
+CREATE TABLE T3 (X,Y) AS SELECT 2*I,2.0*F FROM T1 WITH NO DATA;
+</strong></pre>
+
+</div>
+
+</div>
+
+<div>
+<ul class="ullinks">
+<li class="ulchildlink"><strong><a href="rrefsqlj30540.html">列定義</a></strong><br />
+</li>
+<li class="ulchildlink"><strong><a href="rrefsqlj37836.html">発番列仕様</a></strong><br />
+</li>
+</ul>
+
+<div class="familylinks">
+<div class="parentlink"><strong>親トピック:</strong> <a href="crefsqlj95081.html" title="">CREATE 文</a></div>
+</div>
+<div class="relref"><strong>関連資料</strong><br />
+<div><a href="rrefcreatefunctionstatement.html" title="CREATE FUNCTION文により、式で利用できるJava関数を作成できます。">CREATE FUNCTION 文</a></div>
+<div><a href="rrefsqlj20937.html" title="">CREATE INDEX 文</a></div>
+<div><a href="rrefcreateprocedurestatement.html" title="">CREATE PROCEDURE 文</a></div>
+<div><a href="rrefsqlj31580.html" title="">CREATE SCHEMA 文</a></div>
+<div><a href="rrefsqljcreatesynonym.html" title="">CREATE SYNONYM 文</a></div>
+<div><a href="rrefsqlj43125.html" title="">CREATE TRIGGER 文</a></div>
+<div><a href="rrefsqlj15446.html" title="">CREATE VIEW 文</a></div>
+</div>
+</div>
+
+</body>
+</html>

Propchange: websites/production/db/content/derby/docs/10.4/ja_JP/ref/rrefsqlj24513.html
------------------------------------------------------------------------------
    svn:eol-style = native

Added: websites/production/db/content/derby/docs/10.4/ja_JP/ref/rrefsqlj25228.html
==============================================================================
--- websites/production/db/content/derby/docs/10.4/ja_JP/ref/rrefsqlj25228.html (added)
+++ websites/production/db/content/derby/docs/10.4/ja_JP/ref/rrefsqlj25228.html Wed Mar 13 13:54:17 2013
@@ -0,0 +1,67 @@
+<!--
+  Licensed to the Apache Software Foundation (ASF) under one or more
+  contributor license agreements.  See the NOTICE file distributed with
+  this work for additional information regarding copyright ownership.
+  The ASF licenses this file to You under the Apache License, Version 2.0
+  (the "License"); you may not use this file except in compliance with
+  the License.  You may obtain a copy of the License at
+
+      http://www.apache.org/licenses/LICENSE-2.0
+
+  Unless required by applicable law or agreed to in writing, software
+  distributed under the License is distributed on an "AS IS" BASIS,
+  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+  See the License for the specific language governing permissions and
+  limitations under the License.
+-->
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html lang="ja" xml:lang="ja">
+<head>
+<meta content="text/html; charset=utf-8" http-equiv="Content-Type" />
+<meta name="copyright" content="(C) Copyright 2005" />
+<meta name="DC.rights.owner" content="(C) Copyright 2005" />
+<meta content="public" name="security" />
+<meta content="index,follow" name="Robots" />
+<meta http-equiv="PICS-Label" content='(PICS-1.1 "http://www.icra.org/ratingsv02.html" l gen true r (cz 1 lz 1 nz 1 oz 1 vz 1) "http://www.rsac.org/ratingsv01.html" l gen true r (n 0 s 0 v 0 l 0) "http://www.classify.org/safesurf/" l gen true r (SS~~000 1))' />
+<meta content="reference" name="DC.Type" />
+<meta name="DC.Title" content="SESSION_USER関数" />
+<meta content="SESSION_USER function" name="DC.subject" />
+<meta content="SESSION_USER function" name="keywords" />
+<meta scheme="URI" name="DC.Relation" content="rrefsqlj29026.html" />
+<meta content="XHTML" name="DC.Format" />
+<meta content="rrefsqlj25228" name="DC.Identifier" />
+<meta content="ja" name="DC.Language" />
+<link href="/export/home/tmp/derby/docs-10.4/out/ja_JP/reftemp/commonltr.css" type="text/css" rel="stylesheet" />
+<title>SESSION_USER関数</title>
+</head>
+<body id="rrefsqlj25228"><a name="rrefsqlj25228"><!-- --></a>
+
+
+<h1 class="topictitle1">SESSION_USER関数</h1>
+
+
+<div>
+<div class="section"> <p>SESSION_USERは、現在のユーザの認証識別子あるいは名前を返します。
+現在のユーザがない場合は、<em>APP</em>を返します。</p>
+
+<p><a href="rrefsqlj42476.html#rrefsqlj42476">USER</a>、<a href="rrefsqlj42324.html#rrefsqlj42324">CURRENT_USER</a>、
+SESSION_USER は互いに別名です。</p>
+</div>
+
+<div class="section"><h4 class="sectiontitle">構文</h4> <pre><strong>SESSION_USER</strong></pre>
+ </div>
+
+<div class="example"> <pre><strong>VALUES SESSION_USER</strong></pre>
+ </div>
+
+</div>
+
+<div>
+<div class="familylinks">
+<div class="parentlink"><strong>親トピック:</strong> <a href="rrefsqlj29026.html" title="">組み込み関数</a></div>
+</div>
+</div>
+
+</body>
+</html>

Propchange: websites/production/db/content/derby/docs/10.4/ja_JP/ref/rrefsqlj25228.html
------------------------------------------------------------------------------
    svn:eol-style = native

Added: websites/production/db/content/derby/docs/10.4/ja_JP/ref/rrefsqlj26498.html
==============================================================================
--- websites/production/db/content/derby/docs/10.4/ja_JP/ref/rrefsqlj26498.html (added)
+++ websites/production/db/content/derby/docs/10.4/ja_JP/ref/rrefsqlj26498.html Wed Mar 13 13:54:17 2013
@@ -0,0 +1,115 @@
+<!--
+  Licensed to the Apache Software Foundation (ASF) under one or more
+  contributor license agreements.  See the NOTICE file distributed with
+  this work for additional information regarding copyright ownership.
+  The ASF licenses this file to You under the Apache License, Version 2.0
+  (the "License"); you may not use this file except in compliance with
+  the License.  You may obtain a copy of the License at
+
+      http://www.apache.org/licenses/LICENSE-2.0
+
+  Unless required by applicable law or agreed to in writing, software
+  distributed under the License is distributed on an "AS IS" BASIS,
+  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+  See the License for the specific language governing permissions and
+  limitations under the License.
+-->
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html lang="ja" xml:lang="ja">
+<head>
+<meta content="text/html; charset=utf-8" http-equiv="Content-Type" />
+<meta name="copyright" content="(C) Copyright 2005" />
+<meta name="DC.rights.owner" content="(C) Copyright 2005" />
+<meta content="public" name="security" />
+<meta content="index,follow" name="Robots" />
+<meta http-equiv="PICS-Label" content='(PICS-1.1 "http://www.icra.org/ratingsv02.html" l gen true r (cz 1 lz 1 nz 1 oz 1 vz 1) "http://www.rsac.org/ratingsv01.html" l gen true r (n 0 s 0 v 0 l 0) "http://www.classify.org/safesurf/" l gen true r (SS~~000 1))' />
+<meta content="reference" name="DC.Type" />
+<meta name="DC.Title" content="UPDATE文" />
+<meta content="UPDATE statement" name="DC.subject" />
+<meta content="UPDATE statement" name="keywords" />
+<meta scheme="URI" name="DC.Relation" content="crefsqlj39374.html" />
+<meta content="XHTML" name="DC.Format" />
+<meta content="rrefsqlj26498" name="DC.Identifier" />
+<meta content="ja" name="DC.Language" />
+<link href="/export/home/tmp/derby/docs-10.4/out/ja_JP/reftemp/commonltr.css" type="text/css" rel="stylesheet" />
+<title>UPDATE文</title>
+</head>
+<body id="rrefsqlj26498"><a name="rrefsqlj26498"><!-- --></a>
+
+
+<h1 class="topictitle1">UPDATE文</h1>
+
+
+<div>
+<div class="section"><h4 class="sectiontitle">構文</h4> <pre><strong>{
+    UPDATE <em><a href="rreftablename.html#rreftablename">表名</a></em>
+        SET <em><a href="rrefcolumnname.html#rrefcolumnname">列名</a></em> = <em>値</em>
+        [ , <em><a href="rrefcolumnname.html#rrefcolumnname">列名</a></em> = <em>値</em>} ]*
+        [<em><a href="rrefsqlj33602.html#rrefsqlj33602">WHERE節</a></em>] |
+    UPDATE <em><a href="rreftablename.html#rreftablename">表名</a></em>
+        SET <em><a href="rrefcolumnname.html#rrefcolumnname">列名</a></em> = <em>値</em>
+        [ , <em><a href="rrefcolumnname.html#rrefcolumnname">列名</a></em> = <em>値</em> ]*
+        <em><a href="rrefsqlj15309.html#rrefsqlj15309">WHERE CURRENT OF</a></em>
+}</strong></pre>
+ 
+<p><var class="varname">値</var>の定義は以下の通りです。</p>
+
+<pre><strong><em>式</em> | DEFAULT</strong></pre>
+
+<p>一つ目の書き方は検索による更新といい、WHERE節が真に評価される全行の一つ以上の列を更新します。</p>
+
+<p>二つ目の書き方は位置による更新といい、更新可能な開いたカーソルの現在行の一つ以上の列を更新します。カーソルを作成するSELECT文の<a href="rrefsqlj31783.html#rrefsqlj31783">FOR UPDATE 節</a>にて列が明示された場合、その列だけが更新可能です。もし列が明示されていないかSELECT文にFOR UPDATE節が無かった場合は、全ての列を更新できます。</p>
+ 
+<p>更新後の値にDEFAULTを指定すると、表にて定義された既定値に列の値が設定されます。</p>
+ </div>
+
+<div class="example"><h4 class="sectiontitle">例</h4> <pre><strong>
+<span>
+-- 'E21'の部署(WORKDEPT)にて管理者以外が一時的に再配属されている。
+-- このことを、EMPLOYEEという表の彼らの仕事(JOB)をNULLに、
+-- 彼らへの支払い(SALARY, BONUS, COMM)を0にしてあらわす。</span> 
+UPDATE EMPLOYEE
+  SET JOB=NULL, SALARY=0, BONUS=0, COMM=0
+  WHERE WORKDEPT = 'E21' AND JOB &lt;&gt; 'MANAGER'
+
+-- 特定の肩書きを持たない社員を管理者に昇格する。
+UPDATE EMPLOYEE
+	SET JOB = 'MANAGER'
+	WHERE JOB IS NULL;
+<span>// 全てのプロジェクトの人員配置(PRSTAFF)を1.5増やす。</span>
+stmt.executeUpdate("UPDATE PROJECT SET PRSTAFF = "
+"PRSTAFF + 1.5" +
+"WHERE CURRENT OF" + ResultSet.getCursorName());
+
+<span>-- EMPLOYEEという表にて社員番号(EMPNO)が'000290'の社員の仕事(JOB)を、
+-- 既定値であるNULLに更新する。</span>
+UPDATE EMPLOYEE
+  SET JOB = DEFAULT
+  WHERE EMPNO = '000290'
+</strong></pre>
+ </div>
+
+<div class="section"><h4 class="sectiontitle">文の依存</h4> <p>検索による更新の文は、更新しようとしている表や、そのコングロマリット(ヒープや索引などの記録単位)、その制約、WHERE節やSET式に書かれた表に依存します。検索による更新の準備された文の対象表にCREATE INDEXやDROP INDEX文、ALTER TABLE文が実行されると、その文は無効となります。</p>
+ 
+<p>位置による更新の文はカーソルやカーソルが参照する全ての表に依存します。カーソルがまだ開いていなくとも、位置による更新の文をコンパイルすることができます。しかしながらJDBCの<em>close</em>メソッドにより開いたカーソルをなくすと、位置による更新の文は無効となります。</p>
+ 
+<p>
+位置による更新の準備された文の対象表に、CREATE INDEXやDROP INDEX文、ALTER TABLE文が実行されると、その文は無効となります。
+</p>
+ 
+<p>別名を破棄すると、その別名を使っている更新の準備された文は無効になります。</p>
+ 
+<p>更新の対象表にてトリガの破棄や作成が行われると、更新の文は無効になります。</p>
+ </div>
+
+</div>
+
+<div>
+<div class="familylinks">
+<div class="parentlink"><strong>親トピック:</strong> <a href="crefsqlj39374.html" title="">文</a></div>
+</div>
+</div>
+
+</body>
+</html>

Propchange: websites/production/db/content/derby/docs/10.4/ja_JP/ref/rrefsqlj26498.html
------------------------------------------------------------------------------
    svn:eol-style = native

Added: websites/production/db/content/derby/docs/10.4/ja_JP/ref/rrefsqlj27281.html
==============================================================================
--- websites/production/db/content/derby/docs/10.4/ja_JP/ref/rrefsqlj27281.html (added)
+++ websites/production/db/content/derby/docs/10.4/ja_JP/ref/rrefsqlj27281.html Wed Mar 13 13:54:17 2013
@@ -0,0 +1,72 @@
+<!--
+  Licensed to the Apache Software Foundation (ASF) under one or more
+  contributor license agreements.  See the NOTICE file distributed with
+  this work for additional information regarding copyright ownership.
+  The ASF licenses this file to You under the Apache License, Version 2.0
+  (the "License"); you may not use this file except in compliance with
+  the License.  You may obtain a copy of the License at
+
+      http://www.apache.org/licenses/LICENSE-2.0
+
+  Unless required by applicable law or agreed to in writing, software
+  distributed under the License is distributed on an "AS IS" BASIS,
+  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+  See the License for the specific language governing permissions and
+  limitations under the License.
+-->
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html lang="ja" xml:lang="ja">
+<head>
+<meta content="text/html; charset=utf-8" http-equiv="Content-Type" />
+<meta name="copyright" content="(C) Copyright 2005" />
+<meta name="DC.rights.owner" content="(C) Copyright 2005" />
+<meta content="public" name="security" />
+<meta content="index,follow" name="Robots" />
+<meta http-equiv="PICS-Label" content='(PICS-1.1 "http://www.icra.org/ratingsv02.html" l gen true r (cz 1 lz 1 nz 1 oz 1 vz 1) "http://www.rsac.org/ratingsv01.html" l gen true r (n 0 s 0 v 0 l 0) "http://www.classify.org/safesurf/" l gen true r (SS~~000 1))' />
+<meta content="reference" name="DC.Type" />
+<meta name="DC.Title" content="FLOATデータ型" />
+<meta content="FLOAT data type, as alias for REAL or DOUBLE PRECISION" name="DC.subject" />
+<meta content="FLOAT data type, as alias for REAL or DOUBLE PRECISION" name="keywords" />
+<meta scheme="URI" name="DC.Relation" content="crefsqlj31068.html" />
+<meta content="XHTML" name="DC.Format" />
+<meta content="rrefsqlj27281" name="DC.Identifier" />
+<meta content="ja" name="DC.Language" />
+<link href="/export/home/tmp/derby/docs-10.4/out/ja_JP/reftemp/commonltr.css" type="text/css" rel="stylesheet" />
+<title>FLOATデータ型</title>
+</head>
+<body id="rrefsqlj27281"><a name="rrefsqlj27281"><!-- --></a>
+
+
+<h1 class="topictitle1">FLOATデータ型</h1>
+
+
+<div>
+<div class="section"> <p>FLOATは、指定した精度によりREALあるいはDOUBLE PRECISIONの別名となります。</p>
+</div>
+
+<div class="section"><h4 class="sectiontitle">構文</h4> <pre><strong>FLOAT [ (<em>精度</em>) ]</strong></pre>
+ <p>既定の<em>精度</em>は53で、これはDOUBLE PRECISIONと同等です。
+精度が23以下である場合、FLOATはREALと同等になります。精度が24以上である場合、FLOATはDOUBLE PRECISIONと同等となります。もし精度に0を指定すると、エラーとなります。もし負の精度を指定すると、構文エラーとなります。</p>
+ </div>
+
+<div class="section"><h4 class="sectiontitle">JDBC のメタデータ型 (java.sql.Types)</h4> <p>REAL
+or DOUBLE</p>
+ </div>
+
+<div class="section"><h4 class="sectiontitle">制限</h4> 
+<p>もし24以上の精度を指定した場合、FLOATにはDOUBLEと同じ制限がかかります。</p>
+ 
+<p>もし23以下の精度を指定した場合、FLOATにはREALと同じ制限がかかります。</p>
+ </div>
+
+</div>
+
+<div>
+<div class="familylinks">
+<div class="parentlink"><strong>親トピック:</strong> <a href="crefsqlj31068.html" title="">データ型</a></div>
+</div>
+</div>
+
+</body>
+</html>

Propchange: websites/production/db/content/derby/docs/10.4/ja_JP/ref/rrefsqlj27281.html
------------------------------------------------------------------------------
    svn:eol-style = native

Added: websites/production/db/content/derby/docs/10.4/ja_JP/ref/rrefsqlj27620.html
==============================================================================
--- websites/production/db/content/derby/docs/10.4/ja_JP/ref/rrefsqlj27620.html (added)
+++ websites/production/db/content/derby/docs/10.4/ja_JP/ref/rrefsqlj27620.html Wed Mar 13 13:54:17 2013
@@ -0,0 +1,82 @@
+<!--
+  Licensed to the Apache Software Foundation (ASF) under one or more
+  contributor license agreements.  See the NOTICE file distributed with
+  this work for additional information regarding copyright ownership.
+  The ASF licenses this file to You under the Apache License, Version 2.0
+  (the "License"); you may not use this file except in compliance with
+  the License.  You may obtain a copy of the License at
+
+      http://www.apache.org/licenses/LICENSE-2.0
+
+  Unless required by applicable law or agreed to in writing, software
+  distributed under the License is distributed on an "AS IS" BASIS,
+  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+  See the License for the specific language governing permissions and
+  limitations under the License.
+-->
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html lang="ja" xml:lang="ja">
+<head>
+<meta content="text/html; charset=utf-8" http-equiv="Content-Type" />
+<meta name="copyright" content="(C) Copyright 2005" />
+<meta name="DC.rights.owner" content="(C) Copyright 2005" />
+<meta content="public" name="security" />
+<meta content="index,follow" name="Robots" />
+<meta http-equiv="PICS-Label" content='(PICS-1.1 "http://www.icra.org/ratingsv02.html" l gen true r (cz 1 lz 1 nz 1 oz 1 vz 1) "http://www.rsac.org/ratingsv01.html" l gen true r (n 0 s 0 v 0 l 0) "http://www.classify.org/safesurf/" l gen true r (SS~~000 1))' />
+<meta content="reference" name="DC.Type" />
+<meta name="DC.Title" content="TIMESTAMPデータ型" />
+<meta content="TIMESTAMP data type" name="DC.subject" />
+<meta content="TIMESTAMP data type" name="keywords" />
+<meta scheme="URI" name="DC.Relation" content="crefsqlj31068.html" />
+<meta content="XHTML" name="DC.Format" />
+<meta content="rrefsqlj27620" name="DC.Identifier" />
+<meta content="ja" name="DC.Language" />
+<link href="/export/home/tmp/derby/docs-10.4/out/ja_JP/reftemp/commonltr.css" type="text/css" rel="stylesheet" />
+<title>TIMESTAMPデータ型</title>
+</head>
+<body id="rrefsqlj27620"><a name="rrefsqlj27620"><!-- --></a>
+
+
+<h1 class="topictitle1">TIMESTAMPデータ型</h1>
+
+
+<div>
+<div class="section"> <p>TIMESTAMPでは日付と時刻が結合された値が記録されます。また秒の小数点以下、9桁の値も記録されます。</p>
+</div>
+
+<div class="section"><h4 class="sectiontitle">構文</h4><pre><strong>TIMESTAMP</strong></pre>
+ </div>
+
+<div class="section"><h4 class="sectiontitle">対応するコンパイル時のJavaの型</h4><p><em>java.sql.Timestamp</em></p>
+ </div>
+
+<div class="section"><h4 class="sectiontitle">JDBC メタデータ型 (java.sql.Types)</h4><p>TIMESTAMP</p>
+
+<p>日付、時刻、タイムスタンプは、一つの式で混在して使えません。</p>
+
+<div class="p"><span>Derby</span>ではTIMESTAMPを以下の書式で書けます。<pre>yyyy-mm-dd hh:mm:ss[.nnnnnn]
+yyyy-mm-dd-hh.mm.ss[.nnnnnn]</pre>
+
+上記の二つの書式のうち、最初の一つは<em>java.sql.Timestamp</em>の書式です。</div>
+
+<p>年は常に4文字の数字で表されなければなりません。月や日、時は1文字あるいは2文字の数字とすることができます。分や秒は2文字の数字で表されなければなりません。ナノセカンドが書かれる場合、1文字から6文字の数字で表されます。</p>
+
+<p><span>Derby</span> はデータベースサーバのロケールに固有の日時書式で書かれた文字列を受け付けます。もし適用するべき書式が曖昧である場合、先に述べた組込みの書式が優先されます。</p>
+ </div>
+
+<div class="example"><h4 class="sectiontitle">例</h4> <pre><strong>VALUES '1960-01-01 23:03:20'
+VALUES TIMESTAMP('1962-09-23 03:23:34.234')
+VALUES TIMESTAMP('1960-01-01 23:03:20')</strong></pre>
+ </div>
+
+</div>
+
+<div>
+<div class="familylinks">
+<div class="parentlink"><strong>親トピック:</strong> <a href="crefsqlj31068.html" title="">データ型</a></div>
+</div>
+</div>
+
+</body>
+</html>

Propchange: websites/production/db/content/derby/docs/10.4/ja_JP/ref/rrefsqlj27620.html
------------------------------------------------------------------------------
    svn:eol-style = native

Added: websites/production/db/content/derby/docs/10.4/ja_JP/ref/rrefsqlj27767.html
==============================================================================
--- websites/production/db/content/derby/docs/10.4/ja_JP/ref/rrefsqlj27767.html (added)
+++ websites/production/db/content/derby/docs/10.4/ja_JP/ref/rrefsqlj27767.html Wed Mar 13 13:54:17 2013
@@ -0,0 +1,136 @@
+<!--
+  Licensed to the Apache Software Foundation (ASF) under one or more
+  contributor license agreements.  See the NOTICE file distributed with
+  this work for additional information regarding copyright ownership.
+  The ASF licenses this file to You under the Apache License, Version 2.0
+  (the "License"); you may not use this file except in compliance with
+  the License.  You may obtain a copy of the License at
+
+      http://www.apache.org/licenses/LICENSE-2.0
+
+  Unless required by applicable law or agreed to in writing, software
+  distributed under the License is distributed on an "AS IS" BASIS,
+  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+  See the License for the specific language governing permissions and
+  limitations under the License.
+-->
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html lang="ja" xml:lang="ja">
+<head>
+<meta content="text/html; charset=utf-8" http-equiv="Content-Type" />
+<meta name="copyright" content="(C) Copyright 2005" />
+<meta name="DC.rights.owner" content="(C) Copyright 2005" />
+<meta content="public" name="security" />
+<meta content="index,follow" name="Robots" />
+<meta http-equiv="PICS-Label" content='(PICS-1.1 "http://www.icra.org/ratingsv02.html" l gen true r (cz 1 lz 1 nz 1 oz 1 vz 1) "http://www.rsac.org/ratingsv01.html" l gen true r (n 0 s 0 v 0 l 0) "http://www.classify.org/safesurf/" l gen true r (SS~~000 1))' />
+<meta content="reference" name="DC.Type" />
+<meta name="DC.Title" content="式にて行われる数値型の項目" />
+<meta scheme="URI" name="DC.Relation" content="crefsqlj41507.html" />
+<meta scheme="URI" name="DC.Relation" content="crefsqlj28138.html" />
+<meta scheme="URI" name="DC.Relation" content="rrefsqlj20204.html" />
+<meta scheme="URI" name="DC.Relation" content="rrefsqlj36146.html" />
+<meta content="XHTML" name="DC.Format" />
+<meta content="rrefsqlj27767" name="DC.Identifier" />
+<meta content="ja" name="DC.Language" />
+<link href="/export/home/tmp/derby/docs-10.4/out/ja_JP/reftemp/commonltr.css" type="text/css" rel="stylesheet" />
+<title>式にて行われる数値型の項目</title>
+</head>
+<body id="rrefsqlj27767"><a name="rrefsqlj27767"><!-- --></a>
+
+
+<h1 class="topictitle1">式にて行われる数値型の項目</h1>
+
+<div>
+<div class="section"><div class="p">式にて整数型が使われると、<span>Derby</span>は結果の型を少なくともINTEGERにまで昇格します。式にて整数型と非整数型が混在して使われると、<span>Derby</span>は式の結果を式中の最も高い型に昇格します。<a href="#rrefsqlj27767__sqlj39640">式にて行われる型の昇格</a>にて、式中のデータ型の昇格を説明します。
+
+  
+<div class="tablenoborder"><a name="rrefsqlj27767__sqlj39640"><!-- --></a><table summary="" cellspacing="0" cellpadding="4" id="rrefsqlj27767__sqlj39640" frame="border" border="1" rules="all"><caption>表 1. 式にて行われる型の昇格</caption>
+
+<thead align="left">
+<tr>
+<th align="left" valign="bottom" width="62%" id="N10062">式における最も大きな型</th>
+
+<th align="left" valign="bottom" width="38%" id="N1006B">式の結果型</th>
+
+</tr>
+
+</thead>
+
+<tbody>
+<tr>
+<td valign="top" width="62%" headers="N10062 ">DOUBLE PRECISION</td>
+
+<td valign="top" width="38%" headers="N1006B ">DOUBLE PRECISION</td>
+
+</tr>
+
+<tr>
+<td valign="top" width="62%" headers="N10062 ">REAL</td>
+
+<td valign="top" width="38%" headers="N1006B ">DOUBLE PRECISION</td>
+
+</tr>
+
+<tr>
+<td valign="top" width="62%" headers="N10062 ">DECIMAL</td>
+
+<td valign="top" width="38%" headers="N1006B ">DECIMAL</td>
+
+</tr>
+
+<tr>
+<td valign="top" width="62%" headers="N10062 ">BIGINT</td>
+
+<td valign="top" width="38%" headers="N1006B ">BIGINT</td>
+
+</tr>
+
+<tr>
+<td valign="top" width="62%" headers="N10062 ">INTEGER</td>
+
+<td valign="top" width="38%" headers="N1006B ">INTEGER</td>
+
+</tr>
+
+<tr>
+<td valign="top" width="62%" headers="N10062 ">SMALLINT</td>
+
+<td valign="top" width="38%" headers="N1006B ">INTEGER</td>
+
+</tr>
+
+</tbody>
+
+</table>
+</div>
+</div>
+</div>
+
+<div class="section"><div class="p">例:   
+<pre><strong><span>-- 倍精度浮動小数点数を返します。</span>
+VALUES 1 + 1.0e0
+<span>-- 小数の数を返します。</span>
+VALUES 1 + 1.0
+<span>-- 整数を返します。</span>
+VALUES CAST (1 AS INT) + CAST (1 AS INT)</strong></pre>
+</div>
+</div>
+
+</div>
+
+<div>
+<div class="familylinks">
+<div class="parentlink"><strong>親トピック:</strong> <a href="crefsqlj41507.html" title="">数値型</a></div>
+</div>
+<div class="relconcepts"><strong>関連概念</strong><br />
+<div><a href="crefsqlj28138.html" title="">数値型の概要</a></div>
+</div>
+<div class="relref"><strong>関連資料</strong><br />
+<div><a href="rrefsqlj20204.html" title="">数値を異なる数値型の列に記録する</a></div>
+<div><a href="rrefsqlj36146.html" title="">小数を計算するときの目盛り</a></div>
+</div>
+</div>
+
+</body>
+</html>

Propchange: websites/production/db/content/derby/docs/10.4/ja_JP/ref/rrefsqlj27767.html
------------------------------------------------------------------------------
    svn:eol-style = native

Added: websites/production/db/content/derby/docs/10.4/ja_JP/ref/rrefsqlj27781.html
==============================================================================
--- websites/production/db/content/derby/docs/10.4/ja_JP/ref/rrefsqlj27781.html (added)
+++ websites/production/db/content/derby/docs/10.4/ja_JP/ref/rrefsqlj27781.html Wed Mar 13 13:54:17 2013
@@ -0,0 +1,90 @@
+<!--
+  Licensed to the Apache Software Foundation (ASF) under one or more
+  contributor license agreements.  See the NOTICE file distributed with
+  this work for additional information regarding copyright ownership.
+  The ASF licenses this file to You under the Apache License, Version 2.0
+  (the "License"); you may not use this file except in compliance with
+  the License.  You may obtain a copy of the License at
+
+      http://www.apache.org/licenses/LICENSE-2.0
+
+  Unless required by applicable law or agreed to in writing, software
+  distributed under the License is distributed on an "AS IS" BASIS,
+  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+  See the License for the specific language governing permissions and
+  limitations under the License.
+-->
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html lang="en-us" xml:lang="en-us">
+<head>
+<meta content="text/html; charset=utf-8" http-equiv="Content-Type" />
+<meta name="copyright" content="(C) Copyright 2005" />
+<meta name="DC.rights.owner" content="(C) Copyright 2005" />
+<meta content="public" name="security" />
+<meta content="index,follow" name="Robots" />
+<meta http-equiv="PICS-Label" content='(PICS-1.1 "http://www.icra.org/ratingsv02.html" l gen true r (cz 1 lz 1 nz 1 oz 1 vz 1) "http://www.rsac.org/ratingsv01.html" l gen true r (n 0 s 0 v 0 l 0) "http://www.classify.org/safesurf/" l gen true r (SS~~000 1))' />
+<meta content="reference" name="DC.Type" />
+<meta name="DC.Title" content="MAX関数" />
+<meta content="MAX aggregate function" name="DC.subject" />
+<meta content="MAX aggregate function" name="keywords" />
+<meta scheme="URI" name="DC.Relation" content="rrefsqlj29026.html" />
+<meta content="XHTML" name="DC.Format" />
+<meta content="rrefsqlj27781" name="DC.Identifier" />
+<meta content="en-us" name="DC.Language" />
+<link href="/export/home/tmp/derby/docs-10.4/out/ja_JP/reftemp/commonltr.css" type="text/css" rel="stylesheet" />
+<title>MAX関数</title>
+</head>
+<body id="rrefsqlj27781"><a name="rrefsqlj27781"><!-- --></a>
+
+
+<h1 class="topictitle1">MAX関数</h1>
+
+
+<div>
+<div class="section"> <p>MAXは行の集合から最大の値を求める集約関数です。(<a href="rrefsqlj33923.html#rrefsqlj33923">集約 (集合関数)</a>を参照してください。)
+MAXは組み込まれたデータ型の式に対してのみ適用することができます。
+(CHAR、VARCHAR、DATE、TIME、CHAR FOR BIT DATA等を含みます。)</p>
+</div>
+
+<div class="section"><h4 class="sectiontitle">構文</h4> <pre><strong>MAX ( [ DISTINCT | ALL ] <em>式</em> )</strong></pre>
+ <div class="p">DISTINCTやALLという限定詞により、重複が除去されたりそのまま残されるか決まりますが、これらの限定詞はMAXの式では意味を持ちません。
+<em><a href="rrefselectexpression.html#rrefselectexpression">選択式</a></em>に置くことのできる、DISTINCTの限定詞は一つだけです。
+例えば、次の問合せは許されていません。
+<pre><strong>SELECT COUNT (DISTINCT flying_time), MAX (DISTINCT miles)
+FROM Flights</strong></pre>
+</div>
+ 
+<p><em>式</em>は複数の列への参照や式を含むことができますが、他の集約や副問合せを含むことはできません。
+また組込みのデータ型に評価されなければなりません。
+従って組込みのデータ型と評価されるメソッドを呼ぶことができます。
+(例えば<em>java.lang.Integer</em>や<em>int</em>を返すメソッドはINTEGERと評価されます。)
+もし式がNULLと評価された場合、集約においてその値は無視されます。</p>
+ 
+<p>CHAR、VARCHARについては、値の末尾にある空白文字列は、MAXの振る舞いに影響があります。
+たとえば、'z'と'z 'の両方が列に格納されていた場合、空白は比較にて無視されるので結果は不定ですが、何れか片方の値が返されます。</p>
+ 
+<p>結果のデータ型はMAXが動作する式と同じものとなります。(オーバーフローすることはありません。)</p>
+ </div>
+
+<div class="example"> <pre><strong><span>-- FlightAvailabilityという表から最近の日付を探す。</span>
+SELECT MAX (flight_date) FROM FlightAvailability
+<span>-- それぞれの空港を出発する最も長距離の便を探す。
+-- なお10時間以上の便のみとする。</span>
+SELECT MAX(flying_time), orig_airport
+FROM Flights
+GROUP BY orig_airport
+HAVING MAX(flying_time) &gt; 10
+</strong></pre>
+ </div>
+
+</div>
+
+<div>
+<div class="familylinks">
+<div class="parentlink"><strong>Parent topic:</strong> <a href="rrefsqlj29026.html" title="">組み込み関数</a></div>
+</div>
+</div>
+
+</body>
+</html>

Propchange: websites/production/db/content/derby/docs/10.4/ja_JP/ref/rrefsqlj27781.html
------------------------------------------------------------------------------
    svn:eol-style = native

Added: websites/production/db/content/derby/docs/10.4/ja_JP/ref/rrefsqlj28468.html
==============================================================================
--- websites/production/db/content/derby/docs/10.4/ja_JP/ref/rrefsqlj28468.html (added)
+++ websites/production/db/content/derby/docs/10.4/ja_JP/ref/rrefsqlj28468.html Wed Mar 13 13:54:17 2013
@@ -0,0 +1,129 @@
+<!--
+  Licensed to the Apache Software Foundation (ASF) under one or more
+  contributor license agreements.  See the NOTICE file distributed with
+  this work for additional information regarding copyright ownership.
+  The ASF licenses this file to You under the Apache License, Version 2.0
+  (the "License"); you may not use this file except in compliance with
+  the License.  You may obtain a copy of the License at
+
+      http://www.apache.org/licenses/LICENSE-2.0
+
+  Unless required by applicable law or agreed to in writing, software
+  distributed under the License is distributed on an "AS IS" BASIS,
+  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+  See the License for the specific language governing permissions and
+  limitations under the License.
+-->
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html lang="ja" xml:lang="ja">
+<head>
+<meta content="text/html; charset=utf-8" http-equiv="Content-Type" />
+<meta name="copyright" content="(C) Copyright 2005" />
+<meta name="DC.rights.owner" content="(C) Copyright 2005" />
+<meta content="public" name="security" />
+<meta content="index,follow" name="Robots" />
+<meta http-equiv="PICS-Label" content='(PICS-1.1 "http://www.icra.org/ratingsv02.html" l gen true r (cz 1 lz 1 nz 1 oz 1 vz 1) "http://www.rsac.org/ratingsv01.html" l gen true r (n 0 s 0 v 0 l 0) "http://www.classify.org/safesurf/" l gen true r (SS~~000 1))' />
+<meta content="reference" name="DC.Type" />
+<meta name="DC.Title" content="大文字小文字と特殊文字" />
+<meta content="Case sensitivity of keywords and identifiers, Keywords, case insensitivity of, Special characters, escaping in SQL statements, Escape character, for single-quotation mark, Strings, delimited by single quotation marks within SQL statements, Unicode escapes, support for in SQL statements, Java identifiers, case sensitivity of within SQL, * as wildcard in SQL SELECT, % as wildcard in SQL, _ as wildcard within SQL, Wildcards in SQL, Comment delimiters within SQL, -- (comment delimiters within SQL)" name="DC.subject" />
+<meta content="Case sensitivity of keywords and identifiers, Keywords, case insensitivity of, Special characters, escaping in SQL statements, Escape character, for single-quotation mark, Strings, delimited by single quotation marks within SQL statements, Unicode escapes, support for in SQL statements, Java identifiers, case sensitivity of within SQL, * as wildcard in SQL SELECT, % as wildcard in SQL, _ as wildcard within SQL, Wildcards in SQL, Comment delimiters within SQL, -- (comment delimiters within SQL)" name="keywords" />
+<meta scheme="URI" name="DC.Relation" content="crefsqlj23296.html" />
+<meta scheme="URI" name="DC.Relation" content="crefsqlj18919.html" />
+<meta scheme="URI" name="DC.Relation" content="crefsqlj39374.html" />
+<meta scheme="URI" name="DC.Relation" content="rrefclauses.html" />
+<meta scheme="URI" name="DC.Relation" content="rrefsqlj19433.html" />
+<meta scheme="URI" name="DC.Relation" content="rrefsqlj29840.html" />
+<meta scheme="URI" name="DC.Relation" content="rrefqueries.html" />
+<meta scheme="URI" name="DC.Relation" content="rrefsqlj29026.html" />
+<meta scheme="URI" name="DC.Relation" content="crefsqlbuiltinsystemfunctions.html" />
+<meta scheme="URI" name="DC.Relation" content="rrefkeywords29722.html" />
+<meta scheme="URI" name="DC.Relation" content="rrefsql9241891.html" />
+<meta scheme="URI" name="DC.Relation" content="rrefsistabs38369.html" />
+<meta scheme="URI" name="DC.Relation" content="rrefexcept16677.html" />
+<meta scheme="URI" name="DC.Relation" content="crefjdbc12657.html" />
+<meta scheme="URI" name="DC.Relation" content="rrefjdbc87220.html" />
+<meta scheme="URI" name="DC.Relation" content="rrefjdbcjsr169.html" />
+<meta scheme="URI" name="DC.Relation" content="rrefjdbc32593.html" />
+<meta scheme="URI" name="DC.Relation" content="rrefjdbc4_0summary.html" />
+<meta scheme="URI" name="DC.Relation" content="rrefjdbc1020262.html" />
+<meta content="XHTML" name="DC.Format" />
+<meta content="rrefsqlj28468" name="DC.Identifier" />
+<meta content="ja" name="DC.Language" />
+<link href="/export/home/tmp/derby/docs-10.4/out/ja_JP/reftemp/commonltr.css" type="text/css" rel="stylesheet" />
+<title>大文字小文字と特殊文字</title>
+</head>
+<body id="rrefsqlj28468"><a name="rrefsqlj28468"><!-- --></a>
+
+
+<h1 class="topictitle1">大文字小文字と特殊文字</h1>
+
+
+<div>
+<div class="section"><div class="p">JDBCのクラスやメソッドにSQL文の文字列を渡して、<span>Derby</span>にSQLを発行することができます。
+SQL文の文字列に可能な文字セットはUnicodeです。この文字列には、次の規則が適用されます。<ul>
+<li>二重引用符でSQL-92に定義されている特殊識別子をデリミトして、<em>デリミトされた識別子</em>とすることができます。</li>
+
+<li>一重引用符で文字の列を区切ることができます。</li>
+
+<li>文字の列にて一重引用符またはアポストロフィーをあらわすには、一重引用符を2つ並べます。(言い方を変えれば、一重引用符は一重引用符のエスケープ文字です。)<p>二重引用符にはエスケープ文字が必要ではありません。二重引用符をあらわすには、単に二重引用符を使ってください。ただし、Javaのプログラムでは、二重引用符はバックスラッシュによるエスケープã�
 �Œå¿…要であることを気に留める必要があります。</p>
+<span><strong>例:</strong></span>
+<pre><strong><span>-- 一重引用符はエスケープ文字です-- 一重引用符に対して</span>
+
+VALUES 'Joe''s umbrella'
+<span>-- ijでは二重引用符はエスケープされません。</span>
+VALUES 'He said, "hello!"'
+
+n = stmt.executeUpdate(
+    "UPDATE aTable setStringcol = 'He said, \"hello!\"'");</strong></pre>
+</li>
+
+<li>SQLのキーワードは大文字小文字を区別しません。例えば、SELECTというキーワードは、SELECT、Select、select、sELECTのいずれでも書くことができます。</li>
+
+<li>SQL-92の書き方による識別子は大文字小文字を区別しません。(<em><a href="crefsqlj34834.html#crefsqlj34834">SQL92識別子</a></em>を参照してください。)ただしデリミトされた識別子はそうではありません。</li>
+
+<li>Javaの書き方による識別子は常に大文字小文字を区別します。</li>
+
+<li>*は、<em><a href="rrefselectexpression.html#rrefselectexpression">SelectExpression</a>.</em>にてワイルドカード文字です。<a href="rrefselectexpression.html#rrefselectexpression__sqlj38441">ワイルドカードの*</a>を参照してください。
+この文字は同時に情報演算子でもあります。そのほかの場合この文字は、0回以上の繰り返しを表す、構文のメタ文字です。</li>
+
+<li>%と_は、LIKE演算子に続く文字の列にて使われると、ワイルドカード文字となります。(これはエスケープされなかった場合です。)詳細は<a href="rrefsqlj23075.html#rrefsqlj23075">真偽式</a>を参照してください。</li>
+
+<li>SQL-92の仕様に沿って一行あるいは複数行のコメントを書くことができます。一行のコメントは二つのダッシュ(--)で始まり改行文字で終わります。複数行の改行は前後を囲う書き方で、スラッシュ・スター(/*)で始まり、スター・スラッシュ(*/)で終わります。この書き方では入れ子となる場合があることを留意してください。コメントの開始文字と終了文字の間にある、あら�
 �‚†ã‚‹æ–‡å­—は無視されます。</li>
+
+</ul>
+</div>
+</div>
+
+</div>
+
+<div>
+<div class="familylinks">
+<div class="parentlink"><strong>親トピック:</strong> <a href="crefsqlj23296.html" title="">SQL言語のリファレンス</a></div>
+</div>
+<div class="relconcepts"><strong>関連概念</strong><br />
+<div><a href="crefsqlj18919.html" title="">SQLの識別子</a></div>
+<div><a href="crefsqlj39374.html" title="">文</a></div>
+<div><a href="crefsqlbuiltinsystemfunctions.html" title="">組込みシステム関数</a></div>
+<div><a href="crefjdbc12657.html" title="Derbyは組み込みのJDBCドライバと共に提供されます。">JDBC リファレンス</a></div>
+</div>
+<div class="relref"><strong>関連資料</strong><br />
+<div><a href="rrefclauses.html" title="">SQL 節</a></div>
+<div><a href="rrefsqlj19433.html" title="多くの文や式の構文の語句に、式や表副問合せのような式の一種があります。 式は文の定められた場所に置くことができます。">SQL式</a></div>
+<div><a href="rrefsqlj29840.html" title="">JOIN 演算</a></div>
+<div><a href="rrefqueries.html" title="">SQL 問い合わせ</a></div>
+<div><a href="rrefsqlj29026.html" title="">組み込み関数</a></div>
+<div><a href="rrefkeywords29722.html" title="">SQL予約語</a></div>
+<div><a href="rrefsql9241891.html" title="">DerbyのサポートするSQL-92の機能</a></div>
+<div><a href="rrefsistabs38369.html" title="">Derbyのシステム表</a></div>
+<div><a href="rrefexcept16677.html" title="Derbyにて発生する全てのエラーは、JDBCからSQLExceptionとして挙がります。 もしユーザの定義した型から例外が挙がって、その例外がSQLExceptionでは無い場合、その例外はSQLExceptionにラップされています。 Derby固有のSQLExceptionは、SQLStateクラスに定義されたXで始まるコードを用います。標準に定義されたSQLStateの値は、対応する例外に対して返されます。">Derbyの例外メッセージとSQL state</a></div>
+<div><a href="rrefjdbc87220.html" title="">java.sql.BatchUpdateException クラス</a></div>
+<div><a href="rrefjdbcjsr169.html" title="">Connected Device ConfigurationおよびFoundation Profile向けのJDBCパッケージ(JSR169)</a></div>
+<div><a href="rrefjdbc32593.html" title="">JDBC 3.0の機能</a></div>
+<div><a href="rrefjdbc4_0summary.html" title="">JDBC 4.0の機能</a></div>
+<div><a href="rrefjdbc1020262.html" title="">JDBCエスケープの構文</a></div>
+</div>
+</div>
+
+</body>
+</html>

Propchange: websites/production/db/content/derby/docs/10.4/ja_JP/ref/rrefsqlj28468.html
------------------------------------------------------------------------------
    svn:eol-style = native