<?xml version="1.0" encoding="UTF-8" ?><rdf:RDF 
  xmlns="http://purl.org/rss/1.0/"
  xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
  xmlns:atom="http://www.w3.org/2005/Atom"
  xmlns:dc="http://purl.org/dc/elements/1.1/"
  xml:lang="ja">
  <channel rdf:about="http://w.atwiki.jp/karate405/">
    <title>karate405 @Wiki</title>
    <link>http://w.atwiki.jp/karate405/</link>
    <atom:link href="https://w.atwiki.jp/karate405/rss10.xml" rel="self" type="application/rss+xml" />
    <atom:link rel="hub" href="https://pubsubhubbub.appspot.com" />
    <description>karate405 @Wiki</description>

    <dc:language>ja</dc:language>
    <dc:date>2006-09-04T21:30:36+09:00</dc:date>
    <utime>1157373036</utime>

    <items>
      <rdf:Seq>
                <rdf:li rdf:resource="https://w.atwiki.jp/karate405/pages/19.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/karate405/pages/2.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/karate405/pages/4.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/karate405/pages/17.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/karate405/pages/13.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/karate405/pages/18.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/karate405/pages/3.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/karate405/pages/15.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/karate405/pages/16.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/karate405/pages/14.html" />
              </rdf:Seq>
    </items>
	
		
    
  </channel>
    <item rdf:about="https://w.atwiki.jp/karate405/pages/19.html">
    <title>Php</title>
    <link>https://w.atwiki.jp/karate405/pages/19.html</link>
    <description>
      **PHP 5 memo
$val = 10;
echo number_format($val,3) displays 10.000    </description>
    <dc:date>2006-09-04T21:30:36+09:00</dc:date>
    <utime>1157373036</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/karate405/pages/2.html">
    <title>Program child wiki</title>
    <link>https://w.atwiki.jp/karate405/pages/2.html</link>
    <description>
      [[Top page]]
[[MySQL]]
[[Perl]]
[[Php]]    </description>
    <dc:date>2006-09-04T21:28:43+09:00</dc:date>
    <utime>1157372923</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/karate405/pages/4.html">
    <title>MySQL</title>
    <link>https://w.atwiki.jp/karate405/pages/4.html</link>
    <description>
      **Inner Join Query
There are two tables here for example &quot;tak&quot; and &quot;tak2&quot;.
table tak
 mysql&gt; select * from tak where name =&#039;take&#039;;
 +----+------+-----------+
 | id | name | tel       |
 +----+------+-----------+
 |  1 | take | 721255304 |
 +----+------+-----------+
table tak2
 mysql&gt; select * from tak2 where id =&#039;1&#039;;
 +----+--------------+-----------+--------+
 | id | address      | post_code | linked |
 +----+--------------+-----------+--------+
 |  1 | tondabayashi | 584-0036  |      1 |
 +----+--------------+-----------+--------+
And here is an example of using &quot;inner join&quot;
 mysql&gt; select name, tel, address, post_code from tak 
        inner join tak2 on tak.id = tak2.linked;
 +------+-----------+--------------+-----------+
 | name | tel       | address      | post_code |
 +------+-----------+--------------+-----------+
 | take | 721255304 | tondabayashi | 584-0036  |
 +------+-----------+--------------+-----------+

reference URL : http://www.pursue.ne.jp/SQLDoc/select19.htm

**INTERVAL Exsample
There is a way to perform sql date management

e.g MySQL with PHP
 for(i=0;$i&lt;count($dateArray); $i++){
     $sql = &quot;SELECT * FROM TEST WHERE DATE = &#039;&quot;.$dateArray[$i].&quot;&#039;&quot;;
    }

using INTERVAL method
 $sql = &quot;SELECT * FROM TEST WHERE DATE BETWEEN (SELECT &#039;DATE&#039; - INTERVAL 10 DAY) AND DATE&quot;;    </description>
    <dc:date>2006-09-04T21:27:36+09:00</dc:date>
    <utime>1157372856</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/karate405/pages/17.html">
    <title>Oracle</title>
    <link>https://w.atwiki.jp/karate405/pages/17.html</link>
    <description>
      Oracle Error message reference
http://otn.oracle.co.jp/document/msg/index.html    </description>
    <dc:date>2006-05-09T22:27:14+09:00</dc:date>
    <utime>1147181234</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/karate405/pages/13.html">
    <title>memo</title>
    <link>https://w.atwiki.jp/karate405/pages/13.html</link>
    <description>
      [[Top page]]
[[2006]]
[[Oracle]] instance and database file    </description>
    <dc:date>2006-02-13T11:43:51+09:00</dc:date>
    <utime>1139798631</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/karate405/pages/18.html">
    <title>Perl</title>
    <link>https://w.atwiki.jp/karate405/pages/18.html</link>
    <description>
      *Perl module checker
 #!/bin/sh
 PERL_MODULE_LIST=&quot;/Template /AppConfig /Text/Wrap    /File/Spec /Data/Dumper \                  
 /DBD/mysql /DBI /Date/Parse /CGI/Carp  /GD/ /Chart/Base \
                 /XML/Parser /MIME/Parser&quot;
 find_perl_modules()
 {
    find `perl -e &#039;foreach(@INC){ next if( ! -d $_); print &quot;$_ &quot; unless /^\.$/}&#039;` -name &#039;*.pm&#039; -print|grep &quot;$1&quot;   &gt;/dev/null
    if [ $? -ne 0 ]; then
        echo &quot;not found: $1&quot;;
    fi
 }
 for W in $PERL_MODULE_LIST
    do find_perl_modules $W
 done

http://hp.vector.co.jp/authors/VA013241/webapp/bugzilla/freebsd51.html    </description>
    <dc:date>2006-01-31T23:56:58+09:00</dc:date>
    <utime>1138719418</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/karate405/pages/3.html">
    <title>Network child wiki</title>
    <link>https://w.atwiki.jp/karate405/pages/3.html</link>
    <description>
      [[Top page]]
[[DNS server]]
[[Web server]]
[[Mail server]]
[[FTP server]]
[[Samba server]]
[[Fire Wall(iptables)]] 
[[Oracle]]    </description>
    <dc:date>2006-01-18T00:46:17+09:00</dc:date>
    <utime>1137512777</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/karate405/pages/15.html">
    <title>January</title>
    <link>https://w.atwiki.jp/karate405/pages/15.html</link>
    <description>
       title:Huge information system in Japan
 According to news casting on 6th January [[2006]].
 System construction should start with drawing image maps
 rather than enumerating sentences as misunderstanding may  
 occur in between system engineer and client.


[[reverse proxy&gt;http://e-words.jp/w/E383AAE38390E383BCE382B9E38397E383ADE382ADE382B7.html]]

[[JDBC definition&gt;http://e-words.jp/w/JDBC.html]]

[[JDBC character encoding bug&gt;http://www.intra-mart.jp/intra-mart/developer/tips_12.html]]

[[Oracle JDBC driver&gt;http://otn.oracle.co.jp/software/tech/java/jdbc/nlsalart/nlsalart.html]]

[[JDBC note&gt;http://www02.so-net.ne.jp/~kikuta/jdbcnote/jdbcnote.html]]

[[JDBC performance improvement&gt;http://www.atmarkit.co.jp/fjava/rensai2/webopt11/webopt11.html]]    </description>
    <dc:date>2006-01-13T01:25:32+09:00</dc:date>
    <utime>1137083132</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/karate405/pages/16.html">
    <title>qualifications</title>
    <link>https://w.atwiki.jp/karate405/pages/16.html</link>
    <description>
      システムアナリスト
http://www.venus.dti.ne.jp/~namix/sa.html
[[評価&gt;http://ja.wikipedia.org/wiki/%E3%82%B7%E3%82%B9%E3%83%86%E3%83%A0%E3%82%A2%E3%83%8A%E3%83%AA%E3%82%B9%E3%83%88#.E8.A9.A6.E9.A8.93.E3.81.AE.E8.A9.95.E4.BE.A1]]
テクニカルエンジニア（ネットワーク）試験
[[参考書&gt;http://primad.boy.jp/shoseki-teku.html]]
[[情報処理技術者の資格リンク集&gt;http://www.8ktc.com/shikaku3/jyouhou.html]]
[[情報処理技術者資格の参考書＠Amazon&gt;http://www.amazon.co.jp/exec/obidos/tg/browse/-/492356/250-8796813-7194641]]
[[2006]]    </description>
    <dc:date>2006-01-13T00:59:14+09:00</dc:date>
    <utime>1137081554</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/karate405/pages/14.html">
    <title>2006</title>
    <link>https://w.atwiki.jp/karate405/pages/14.html</link>
    <description>
      [[January]]
February
March
April
May
Jun
July
August
September
October
Novmber
December    </description>
    <dc:date>2006-01-06T23:45:40+09:00</dc:date>
    <utime>1136558740</utime>
  </item>
  </rdf:RDF>
