-1

查询1

    SELECT SessionInfo.IVRSessionInfoID         
    FROM SessionInfo 
     WHERE SessionCallTime BETWEEN UNIX_TIMESTAMP('2013-08-01 00:00:00') 
        AND UNIX_TIMESTAMP('2013-08-01 23:59:59')
    ORDER BY SessionInfo.SessionCallTime DESC; 

查询2

          SELECT SessionInfo.IVRSessionInfoID         
          FROM SessionInfo 
         WHERE (SessionInfo.SessionCallTime BETWEEN '2013-08-01 00:00:00'
                                         AND  '2013-08-01 23:59:59')
          ORDER BY SessionInfo.SessionCallTime DESC; 

为什么第一个查询给出 0 行第二个查询给出记录有什么区别

在此表中,这两个日期之间有 20000 行

表模式

    CREATE TABLE `SessionInfo` (
    `IVRSessionInfoID` bigint(8) unsigned NOT NULL AUTO_INCREMENT,
   `SessionCallTime` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
   `MGServerIP` varchar(15) NOT NULL,
   `MGServerPort` smallint(2) unsigned NOT NULL DEFAULT '5060',
    `SessionUniqueID` varchar(64) NOT NULL,
   `ANI` varchar(20) NOT NULL,
  `CountryID` int(4) unsigned DEFAULT NULL,
  `CountryStateAreaID` int(4) unsigned DEFAULT NULL,
 `AccessNumberProviderLogID` int(4) unsigned DEFAULT NULL,
 `AccessNumberLogID` int(4) unsigned DEFAULT NULL,
    `AccessRestrictionLogID` int(4) unsigned DEFAULT NULL,
`SubscriberCardID` bigint(8) unsigned DEFAULT NULL,
  `SessionDuration` int(4) unsigned NOT NULL,
`SessionRNDDuration` int(4) unsigned NOT NULL,
 `TotalCharge` decimal(15,6) unsigned NOT NULL,
`RuleSetLogID` int(4) unsigned DEFAULT NULL,
`RuleSetChargeInfoLogID` int(4) unsigned DEFAULT NULL,
`RuleSetRNDDuration` int(4) unsigned NOT NULL,
`RuleSetTotalCharge` decimal(15,6) unsigned NOT NULL,
 PRIMARY KEY (`IVRSessionInfoID`),
   UNIQUE KEY `UNIQUE` (`SessionUniqueID`),
   KEY `SessionCallTime` (`SessionCallTime`),
   KEY `ANI` (`ANI`),
   KEY `CountryID` (`CountryID`),
    KEY `CountryStateAreaID` (`CountryStateAreaID`),
  KEY `AccessNumberProviderLogID` (`AccessNumberProviderLogID`),
  KEY `AccessNumberLogID` (`AccessNumberLogID`),
   KEY `AccessRestrictionLogID` (`AccessRestrictionLogID`),
  KEY `SubscriberCardID` (`SubscriberCardID`),

   ) ENGINE=InnoDB AUTO_INCREMENT=22199955 DEFAULT CHARSET=latin1 ROW_FORMAT=COMPACT;          
4

1 回答 1

3

这个问题可能更适合 DBA 交换......

...但我的猜测是因为UNIX_TIMESTAMP('anything')返回 andint/decimal/number'2013-08-01 23:59:59'某些数据库数据类型的格式DateTime

.

EG:SessionInfo.SessionCallTime不使用与 兼容的数据类型UNIX_TIMESTAMP()

于 2013-10-01T13:21:52.253 回答