mysql:3101
From: (遠藤 俊裕) <<endo_t@xxxxxxxxxx>>
Date: Fri, 26 Jan 2001 09:54:17 +0900
Subject: [mysql 03101] いらっしゃいませ
えんどう@にふてぃ です。 競馬王 さんは書きました: >初めまして。 >競馬王と申します。 来られたんですね。(笑) よろしくお願いします。私も初心者ですのでお互い頑張りましょう。 ところで、以下の件はここでも聞いた方が良いかも知れませんよ。 ・ロールバックがないが、これによる利点・欠点は? BerkeleyDB を使えば可能なんでしょうが、私もよくわかりませ んので識者の方のご意見を伺う方が良いでしょう。 ちなみに、IF の syntax は以下の通りです。 IF(expr1,expr2,expr3) If expr1 is TRUE (expr1 <> 0 and expr1 <> NULL) then IF() returns expr2, else it returns expr3. IF() returns a numeric or string value, depending on the context in which it is used. mysql> select IF(1>2,2,3); -> 3 mysql> select IF(1<2,'yes','no'); -> 'yes' mysql> select IF(strcmp('test','test1'),'no','yes'); -> 'no' expr1 is evaluated as an integer value, which means that if you are testing floating-point or string values, you should do so using a comparison operation. mysql> select IF(0.1,1,0); -> 0 mysql> select IF(0.1<>0,1,0); -> 1
3098 2001-01-26 01:49 [競馬王 <jra_hunter@x] 3099 2001-01-26 02:15 ┣["s.ara" <ml@xxxxxxxx] 3100 2001-01-26 02:27 ┣[競馬王 <jra_hunter@x] -> 3101 2001-01-26 09:54 ┗[<endo_t@xxxxxxxxxx> ] いらっしゃいませ 3104 2001-01-26 15:38 ┗[競馬王 <jra_hunter@x]