<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>SQL Master &#187; SQL辞典</title>
	<atom:link href="http://www.sql-master.net/articles/SQLcategory/sql-reference/feed" rel="self" type="application/rss+xml" />
	<link>http://www.sql-master.net</link>
	<description>OracleやMS SQL serverの資格対策</description>
	<lastBuildDate>Tue, 24 Aug 2010 13:58:26 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.5</generator>
	<language>ja</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>【SQL算術関数】EXP　－　指数値を求める　（Oracle、SQL Server）</title>
		<link>http://www.sql-master.net/articles/SQL851.html</link>
		<comments>http://www.sql-master.net/articles/SQL851.html#comments</comments>
		<pubDate>Thu, 01 Oct 2009 12:40:18 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[SQL辞典]]></category>

		<guid isPermaLink="false">http://www.sql-master.net/?p=851</guid>
		<description><![CDATA[OracleやSQL Serverで指数値を求めるには、EXP関数を使います。


EXP(n)

eのn乗を計算する。eとはネイピア数の事を言い、e=2.71828&#8230;である。

使用例：x列の指数値を求める [...]]]></description>
			<content:encoded><![CDATA[<p>OracleやSQL Serverで指数値を求めるには、EXP関数を使います。<br />
<br/></p>
<blockquote><p>
EXP(n)
</p></blockquote>
<p>eのn乗を計算する。eとはネイピア数の事を言い、e=2.71828&#8230;である。</p>
<p><br/><br />
使用例：x列の指数値を求める</p>
<blockquote><p>
SELECT x, EXP(x) FROM tbTestTable;</p>
<p>x 　　　EXP(x)<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;<br />
-1.5 　　0.22313016014843<br />
-0.5 　　0.606530659712633<br />
0 　　　　　　　　　　　　　　　1<br />
0.5 　　1.64872127070013<br />
1 2.　　71828182845905<br />
1.5 　　4.48168907033806
</p></blockquote>
<p><br/><br />
<a href="http://www.sql-master.net/sql-command-reference">SQLコマンド辞典に戻る</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.sql-master.net/articles/SQL851.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>【SQL算術関数】POWER　－　べき乗を求める　（Oracle、SQL Server）</title>
		<link>http://www.sql-master.net/articles/SQL843.html</link>
		<comments>http://www.sql-master.net/articles/SQL843.html#comments</comments>
		<pubDate>Tue, 29 Sep 2009 13:48:46 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[SQL辞典]]></category>

		<guid isPermaLink="false">http://www.sql-master.net/?p=843</guid>
		<description><![CDATA[OracleやSQL Serverでnのm乗のようなべき乗を求めるには、POWER関数を使います。

文法：

POWER(n, m)

nのm乗をした数値を返す。
使用例：xのy乗を求める

SELECT x, y,  [...]]]></description>
			<content:encoded><![CDATA[<p>OracleやSQL Serverでnのm乗のようなべき乗を求めるには、POWER関数を使います。</p>
<p><br/><br />
文法：</p>
<blockquote><p>
POWER(n, m)
</p></blockquote>
<p>nのm乗をした数値を返す。</p>
<p>使用例：xのy乗を求める</p>
<blockquote><p>
SELECT x, y, POWER(x, y) FROM tbTestTable;</p>
<p>x 　　y 　　　POWER(x, y)<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;<br />
3 　　2 　　　9<br />
4 　　6 　　　4096<br />
-3 　　2 　　　9
</p></blockquote>
<p><br/><br />
<a href="http://www.sql-master.net/sql-command-reference">SQLコマンド辞典に戻る</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.sql-master.net/articles/SQL843.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>【SQL算術関数】MOD　－　余剰（余り）を計算する　（Oracle）</title>
		<link>http://www.sql-master.net/articles/SQL836.html</link>
		<comments>http://www.sql-master.net/articles/SQL836.html#comments</comments>
		<pubDate>Mon, 28 Sep 2009 14:15:25 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[SQL辞典]]></category>

		<guid isPermaLink="false">http://www.sql-master.net/?p=836</guid>
		<description><![CDATA[Oracleでは、MOD関数を使って割り算の余剰を計算することができます。

文法：

MOD(n, m)

nをmで割った時の余りを求める。

使用例：x/yの余りを求める

SELECT x, y, MOD(x, y [...]]]></description>
			<content:encoded><![CDATA[<p>Oracleでは、MOD関数を使って割り算の余剰を計算することができます。</p>
<p><br/><br />
文法：</p>
<blockquote><p>
MOD(n, m)
</p></blockquote>
<p>nをmで割った時の余りを求める。<br />
<br/></p>
<p>使用例：x/yの余りを求める</p>
<blockquote><p>
SELECT x, y, MOD(x, y) FROM tbTestTable;</p>
<p>x　　 y 　　MOD(x, y)<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-<br />
12　 4 　　0<br />
12 　5 　　2<br />
12　 7 　　5
</p></blockquote>
<p><br/><br />
<a href="http://www.sql-master.net/sql-command-reference">SQLコマンド辞典に戻る</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.sql-master.net/articles/SQL836.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>【SQL変換関数】TO_NUMBER　－　文字列を数値に変換する　（Oracle）</title>
		<link>http://www.sql-master.net/articles/SQL826.html</link>
		<comments>http://www.sql-master.net/articles/SQL826.html#comments</comments>
		<pubDate>Mon, 28 Sep 2009 13:56:35 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[SQL辞典]]></category>

		<guid isPermaLink="false">http://www.sql-master.net/?p=826</guid>
		<description><![CDATA[OracleではTO_NUMBER関数を使って文字列を数値に変換することができます。

文法：

TO_NUMBER(value [, format] )

valueに指定した文字列をformatに従って変換する

使 [...]]]></description>
			<content:encoded><![CDATA[<p>OracleではTO_NUMBER関数を使って文字列を数値に変換することができます。</p>
<p><br/><br />
文法：</p>
<blockquote><p>
TO_NUMBER(value [, format] )
</p></blockquote>
<p>valueに指定した文字列をformatに従って変換する</p>
<p><br/><br />
使用例：文字列を数値に変換する。</p>
<blockquote><p>
SELECT value, TO_NUBER(value, &#8216;999,999&#8242;) FROM tbTestTable;</p>
<p>value 　　　　　　　TO_NUMBER(value, &#8216;999,999.999&#8242;)<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;<br />
333 　　　　　　　　333<br />
21,000 　　　　　　21000<br />
3,311.301 　　　　3311.301
</p></blockquote>
<p><br/><br />
<a href="http://www.sql-master.net/sql-command-reference">SQLコマンド辞典に戻る</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.sql-master.net/articles/SQL826.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>【SQL変換関数】TO_DATE　－　日付値に変換する　（Oracle）</title>
		<link>http://www.sql-master.net/articles/SQL817.html</link>
		<comments>http://www.sql-master.net/articles/SQL817.html#comments</comments>
		<pubDate>Mon, 28 Sep 2009 13:40:27 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[SQL辞典]]></category>

		<guid isPermaLink="false">http://www.sql-master.net/?p=817</guid>
		<description><![CDATA[Oracleでは、TO_DATE関数を使って、文字列もしくは数値を日付値に変換することができます。

文法：

TO_DATE(value [, format] )

valueに指定した文字列もしくは数値をformat [...]]]></description>
			<content:encoded><![CDATA[<p>Oracleでは、TO_DATE関数を使って、文字列もしくは数値を日付値に変換することができます。<br />
<br/><br />
文法：</p>
<blockquote><p>
TO_DATE(value [, format] )
</p></blockquote>
<p>valueに指定した文字列もしくは数値をformatに従って日付値に変換する。</p>
<p><br/><br />
使用例：文字列から日付値に変換する</p>
<blockquote><p>
SELECT d, TO_DATE(d, &#8216;RRMMDD&#8217;) FROM tbTestTable;</p>
<p>d 　　　　　　　TO_DATE(d, &#8216;RRMMDD&#8217;)<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;<br />
20090928 　　09-09-28<br />
790722 　　　　79-07-22
</p></blockquote>
<p><br/><br />
<a href="http://www.sql-master.net/sql-command-reference">SQLコマンド辞典に戻る</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.sql-master.net/articles/SQL817.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>【SQL日付関数】NEXT_DAY　－　指定した曜日が次に来る日付を求める　（Oracle）</title>
		<link>http://www.sql-master.net/articles/SQL803.html</link>
		<comments>http://www.sql-master.net/articles/SQL803.html#comments</comments>
		<pubDate>Sat, 26 Sep 2009 14:25:56 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[SQL辞典]]></category>

		<guid isPermaLink="false">http://www.sql-master.net/?p=803</guid>
		<description><![CDATA[OracleではNEXT_DAY関数を利用して、指定した曜日が次に来る日付を求める事ができます。

文法：

NEXT_DAY(date, week)

dateから見てweekで指定した曜日が来る次の日付を求める。

 [...]]]></description>
			<content:encoded><![CDATA[<p>OracleではNEXT_DAY関数を利用して、指定した曜日が次に来る日付を求める事ができます。</p>
<p><br/><br />
文法：</p>
<blockquote><p>
NEXT_DAY(date, week)
</p></blockquote>
<p>dateから見てweekで指定した曜日が来る次の日付を求める。</p>
<p><br/><br />
使用例：date列の日付から見て、次の土曜日の日付を求める。</p>
<blockquote><p>
SELECT date, NEXT_DAY(date, &#8216;土曜日&#8217;) FROM tbTestTable;</p>
<p>date 　　　　　　　NEXT_DAY(date, &#8216;土曜日&#8217;)<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;<br />
09-09-22 　　　　09-09-26<br />
79-02-21 　　　　79-02-24
</p></blockquote>
<p><br/><br />
<a href="http://www.sql-master.net/sql-command-reference">SQLコマンド辞典に戻る</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.sql-master.net/articles/SQL803.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>【SQL日付関数】ADD_MONTHS　－　日付に月を加算する　（Oracle）</title>
		<link>http://www.sql-master.net/articles/SQL792.html</link>
		<comments>http://www.sql-master.net/articles/SQL792.html#comments</comments>
		<pubDate>Thu, 24 Sep 2009 12:51:06 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[SQL辞典]]></category>

		<guid isPermaLink="false">http://www.sql-master.net/?p=792</guid>
		<description><![CDATA[Oracleでは、ADD_MONTHSを使って日付に月を加算する事ができます。注意点として、2009/09/30のように月末の日付に月を加算すると、その月の月末を計算します。例えば、2009/09/30に1月加算すると、 [...]]]></description>
			<content:encoded><![CDATA[<p>Oracleでは、ADD_MONTHSを使って日付に月を加算する事ができます。注意点として、2009/09/30のように月末の日付に月を加算すると、その月の月末を計算します。例えば、2009/09/30に1月加算すると、2009/10/31となります。また、2010/01/31に1月加算すると、2010/02/28となります。</p>
<p><br/><br />
文法：</p>
<blockquote><p>
ADD_MONTHS(date, n)
</p></blockquote>
<p>dateに指定した日付にnヶ月を加算する。</p>
<p><br/><br />
使用例：今日の日付の3ヶ月後の日付を取得する。</p>
<blockquote><p>
SELECT sysdate, ADD_MONTHS(sysdate, 3) FROM DUAL;</p>
<p>sysdate 　　　　ADD_MONTHS(sysdate, 3)<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
09-09-24 　　　　09-10-24
</p></blockquote>
<p><br/><br />
使用例：今日の日付の3カ月前の日付を取得する。</p>
<blockquote><p>
SELECT sysdate, ADD_MONTHS(sysdate, -3) FROM DUAL;</p>
<p>sysdate 　　　　ADD_MONTHS(sysdate, -3)<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
09-09-24 　　　　09-06-24
</p></blockquote>
<p><br/><br />
使用例：2009/09/30に1月加算する。</p>
<blockquote><p>
SELECT ADD_MONTHS(&#8217;2009/09/30&#8242;, 1) FROM DUAL;</p>
<p>ADD_MONTHS(&#8217;2009/09/30&#8242;, 1)<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-<br />
2009/10/31
</p></blockquote>
<p><br/><br />
<a href="http://www.sql-master.net/sql-command-reference">SQLコマンド辞典に戻る</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.sql-master.net/articles/SQL792.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>【SQL算術関数】LEAST　－　引数の中から最小値を返す　（Oracle）</title>
		<link>http://www.sql-master.net/articles/SQL779.html</link>
		<comments>http://www.sql-master.net/articles/SQL779.html#comments</comments>
		<pubDate>Wed, 16 Sep 2009 13:36:08 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[SQL辞典]]></category>

		<guid isPermaLink="false">http://www.sql-master.net/?p=779</guid>
		<description><![CDATA[Oracleでは、複数の引数の中から最小値を返すにはLEAST関数を使います。逆に複数の引数の中から最大値を返すにはGREATEST関数を使います。

文法：

LEAST(a, b [, c, .....] )


使 [...]]]></description>
			<content:encoded><![CDATA[<p>Oracleでは、複数の引数の中から最小値を返すにはLEAST関数を使います。逆に複数の引数の中から最大値を返すには<a href="http://www.sql-master.net/articles/SQL730.html">GREATEST関数</a>を使います。<br />
<br/></p>
<p>文法：</p>
<blockquote><p>
LEAST(a, b [, c, .....] )
</p></blockquote>
<p><br/></p>
<p>使用例：英語、数学、物理のテストの点数から最小点を求める。</p>
<blockquote><p>
SELECT user, english, math, physics, LEAST(english, math, physics) FROM tbExamTable;</p>
<p>user 　　　　english 　math 　physics 　LEAST(english, math, physics)<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
Yamada 　　56 　　　　33 　　　79 　　　　33<br />
Kawai 　　　 80 　　　　67 　　　46 　　　   46
</p></blockquote>
<p><br/><br />
<a href="http://www.sql-master.net/sql-command-reference">SQLコマンド辞典に戻る</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.sql-master.net/articles/SQL779.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>【SQL日付関数】LAST_DAY　－　月の最終日付を取得する　（Oracle）</title>
		<link>http://www.sql-master.net/articles/SQL771.html</link>
		<comments>http://www.sql-master.net/articles/SQL771.html#comments</comments>
		<pubDate>Wed, 16 Sep 2009 02:49:04 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[SQL辞典]]></category>

		<guid isPermaLink="false">http://www.sql-master.net/?p=771</guid>
		<description><![CDATA[Oracleでは、LAST_DAY関数を利用して月の最終日を取得する事ができます。閏年にも対応していますね。

使用例：月の最終日付を取得する。

SELECT date, LAST_DAY(date) FROM tbT [...]]]></description>
			<content:encoded><![CDATA[<p>Oracleでは、LAST_DAY関数を利用して月の最終日を取得する事ができます。閏年にも対応していますね。</p>
<p><br/><br />
使用例：月の最終日付を取得する。</p>
<blockquote><p>
SELECT date, LAST_DAY(date) FROM tbTestTable;</p>
<p>date 　　　　　　　　LAST_DAY(date)<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;<br />
2009-09-16 　　　　2009-09-30<br />
2009-10-11　　　　 2009-10-31<br />
2009-02-22 　　　　2009-02-28<br />
2012-02-22 　　　　2012-02-29
</p></blockquote>
<p><br/><br />
<a href="http://www.sql-master.net/sql-command-reference">SQLコマンド辞典に戻る</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.sql-master.net/articles/SQL771.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>【SQL日付関数】EXTRACT　－　日付から任意の日付要素を取得する　（Oracle）</title>
		<link>http://www.sql-master.net/articles/SQL761.html</link>
		<comments>http://www.sql-master.net/articles/SQL761.html#comments</comments>
		<pubDate>Wed, 16 Sep 2009 02:20:04 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[SQL辞典]]></category>

		<guid isPermaLink="false">http://www.sql-master.net/?p=761</guid>
		<description><![CDATA[Oracleで、日付値から任意の日付要素（年、月、日など）を取得するにはEXTRACT関数を使います。例えば、EXTRACT関数を使えば、2008-09-22という日付値から、月を取得すると09という値を取得することがで [...]]]></description>
			<content:encoded><![CDATA[<p>Oracleで、日付値から任意の日付要素（年、月、日など）を取得するにはEXTRACT関数を使います。例えば、EXTRACT関数を使えば、2008-09-22という日付値から、月を取得すると09という値を取得することができます。<br />
<br/><br />
文法：</p>
<blockquote><p>
EXTRACT(element FROM date)
</p></blockquote>
<p>dateからelementで指定した日付要素を取得する。</p>
<p><br/><br />
使用例：現在の日付から月を取得する。</p>
<blockquote><p>
SELECT SYSDATE, EXTRACT(month FROM <a href="http://www.sql-master.net/articles/SQL715.html">SYSDATE</a>) FROM DUAL;</p>
<p>SYSDATE 　　　EXTRACT(month FROM SYSDATE)<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
09-09-16 　　　　09
</p></blockquote>
<p><br/></p>
<p>使用例：現在の日付から日を取得する。</p>
<blockquote><p>
SELECT SYSDATE, EXTRACT(day FROM SYSDATE) FROM DUAL;</p>
<p>SYSDATE 　　　EXTRACT(day FROM SYSDATE)<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;<br />
09-09-16 　　　　16
</p></blockquote>
<p><br/></p>
<p>時、分、秒などの日付要素を取得したい場合は、TIMESTAMP型の値の指定が必要です。</p>
<p><br/><br />
使用例：現在の日付から分を取得する。</p>
<blockquote><p>
SELECT CURRENT_TIMESTAMP, EXTRACT(minute FROM <a href="http://www.sql-master.net/articles/SQL535.html">CURRENT_TIMESTAMP</a>) FROM DUAL;</p>
<p>CURRENT_TIMESTAMP 　　　　　　　　　　　EXRTRACT(minute F&#8230;&#8230;&#8230;)<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
09-09-16 02:15:04.192000000 GMT 　　　　15
</p></blockquote>
<p><br/><br />
<a href="http://www.sql-master.net/sql-command-reference">SQLコマンド辞典に戻る</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.sql-master.net/articles/SQL761.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
