[前][次][番号順一覧][スレッド一覧]

mysql:8984

From: ML account <ML account <ml@xxxxxxxxxx>>
Date: Mon, 15 Mar 2004 09:34:59 +0900
Subject: [mysql 08984] Re: select の where 指定で件数が正しくない

 こんにちは。

"TAKT Co.,ltd." <t@xxxxxxxxxx>さんの
<019d01c409b3$7942e680$0a00a8c0@your9ez9c7vgkw>
"[mysql 08978] Re: select の where 指定で件数が正しくない"

 英語が苦手、と言う方は多いですが、中学で3年間、高校で3年間、もしかし
たら大学で2年〜4年間、英語を勉強しているんですから、基本的な事はご存じ
でしょう。なのに苦手とは、それは「上手く書こう」とか「上手く話そう」とか
の、欲と言うか見栄と言うか、があるためではないでしょうか。

 「子供が話せる様になるのは、文法や単語の間違いを恐れては居ないからじゃ
ないか?お前が上手く話そうなどと失敗を恐れる限り、英語が上手くなる事は無
いだろう。お前の英語が変なのは皆知っているし、それを許容して意味を取って
行く位の事は俺達には出来るんだよ」昔務めていた所で、同僚に言われたのはこ
んな事です。

 ボクにしても、もう10年も英語を使っていないのですから、相当に錆び付いて
しまっています。ですが、気にしない、気にしない。言葉なんて意志を伝える道
具なんですから、用が足りれば充分なんです。ちょっと位(あるいは大幅に)変で
も、気にしない、気にしない。相手が分からなければ、再度説明すれば良いので
す。



Synopsis: WHERE clause parsed incorrectly.
Severity: Critical
Priority: High
Category: MySQL Server
Release: 4.1.1-alpha-standard
Operating system: 『Linuxはなんでしょうね』

Description: 
 WHERE clauses containing same criteria ANDed did not work.

 2 queries "select * from a where str='B';" and "select * from a where
str='B' && str='B'" should return rows, but latter (criteria doubled
with AND) did not return any rows.

 According to Masahiro Tomita <tommy@xxxxxxxxxx>, it seems to be
specific to charset.  He got right result on charset "latin1", but not
Japanese.


How to repeat: 
mysql> select * from a;
+---+------+
| i | str  |
+---+------+
| 1 | B    |
+---+------+
1 row in set (0.00 sec)

mysql> select * from a where str='B';
+---+------+
| i | str  |
+---+------+
| 1 | B    |
+---+------+
1 row in set (0.00 sec)

mysql> select * from a where str='B' && str='B';
Empty set (0.00 sec)



    松枝知直    <tomom@xxxxxxxxxx>
            http://www.argus.ne.jp/~tomom/



[前][次][番号順一覧][スレッド一覧]

      8881 2004-03-02 15:44 ["TAKT Co.,ltd." <t@x] select の where 指定で件数が正しくない  
      8891 2004-03-03 09:03 ┣[KAWAJI Shinya <kawaj]                                       
      8893 2004-03-03 09:17 ┃┗[nagai <w96176sn@xxxx] timeout について                    
      8892 2004-03-03 09:08 ┣[とみたまさひろ <tomm]                                       
      8901 2004-03-03 21:48 ┃┗["TAKT Co.,ltd." <t@x]                                     
      8910 2004-03-06 11:21 ┣["片寄白王" <katayose]                                       
      8934 2004-03-09 09:21 ┃┗["TAKT Co.,ltd." <t@x]                                     
      8978 2004-03-14 19:59 ┗["TAKT Co.,ltd." <t@x]                                       
      8979 2004-03-14 22:30  ┣[とみたまさひろ <tomm]                                     
->    8984 2004-03-15 09:34  ┗[ML account <ml@xxxxx]