mysql:9364
From: Koichi Shimamura <Koichi Shimamura <MAF01541@xxxxxxxxxx>>
Date: Fri, 14 May 2004 09:54:51 +0900
Subject: [mysql 09364] Re: distinct でデータ
島村です。皆さんありがとうございます。 不要な項目がいたずらをしているのかと思い、必要項目だけのテーブルを作って試して みたのですが結果は同じでした。 mysql> create table test ( question_no int, create_date datetime); mysql> insert into test (question_no, create_date) select question_no, create_ date from answer; mysql> select question_no from test order by create_date desc limit 10; +-------------+ | question_no | +-------------+ | 1 | | 1 | | 5103 | | 5103 | | 5103 | | 5102 | | 5102 | | 5102 | | 34 | | 43 | +-------------+ 10 rows in set (0.01 sec) mysql> select distinct question_no from test order by create_date desc limit 1 0; +-------------+ | question_no | +-------------+ | 5103 | | 5102 | | 34 | | 43 | | 5031 | | 5008 | | 4910 | | 4939 | | 4954 | | 4886 | +-------------+ 10 rows in set (0.25 sec) 片寄さんが書かれていたことが原因のような気がします。 もう少し調べてみます。
9354 2004-05-13 23:53 [Koichi Shimamura <ma] distinct でデータ欠落 9355 2004-05-14 00:11 ┗[seiji takegata <take] 9358 2004-05-14 01:32 ┣["KATAYOSE hakuo" <ka] 9359 2004-05-14 02:22 ┃┗[seiji takegata <take] 9360 2004-05-14 02:50 ┗[seiji takegata <take] -> 9364 2004-05-14 09:54 ┗[Koichi Shimamura <MA] Re: distinct でデータ 9365 2004-05-14 10:43 ┗[Koichi Shimamura <MA] Re: distinct でデータ欠落 9366 2004-05-14 10:57 ┣[seiji takegata <take] 9368 2004-05-14 11:29 ┗["HIROSE, Masaaki" <h] 9371 2004-05-14 20:20 ┗[Koichi Shimamura <ma]