type_time.test
来自「视频监控网络部分的协议ddns,的模块的实现代码,请大家大胆指正.」· TEST 代码 · 共 80 行
TEST
80 行
## testing of the TIME column type#--disable_warningsdrop table if exists t1;--enable_warningscreate table t1 (t time);insert into t1 values("10:22:33"),("12:34:56.78"),(10),(1234),(123456.78),(1234559.99),("1"),("1:23"),("1:23:45"), ("10.22"), ("-10 1:22:33.45"),("20 10:22:33"),("1999-02-03 20:33:34");insert t1 values (30),(1230),("1230"),("12:30"),("12:30:35"),("1 12:30:31.32");select * from t1;# Test wrong valuesinsert into t1 values("10.22.22"),(1234567),(123456789),(123456789.10),("10 22:22"),("12.45a");select * from t1;drop table t1;create table t1 (t time);insert into t1 values ('09:00:00'),('13:00:00'),('19:38:34'), ('13:00:00'),('09:00:00'),('09:00:00'),('13:00:00'),('13:00:00'),('13:00:00'),('09:00:00');select t, time_to_sec(t),sec_to_time(time_to_sec(t)) from t1;select sec_to_time(time_to_sec(t)) from t1;drop table t1;## BUG #12440: Incorrect processing of time values containing# long fraction part and/or large exponent part.## These must return normal result:# ########################################################### To be uncommented after fix BUG #15805# ########################################################### SELECT CAST(235959.123456 AS TIME);# SELECT CAST(0.235959123456e+6 AS TIME);# SELECT CAST(235959123456e-6 AS TIME);# These must cut fraction part and produce warning:# SELECT CAST(235959.1234567 AS TIME);# SELECT CAST(0.2359591234567e6 AS TIME);# This must return NULL and produce warning:# SELECT CAST(0.2359591234567e+30 AS TIME);# ########################################################### End of 4.1 tests## Bug#29555: Comparing time values as strings may lead to a wrong result.#select cast('100:55:50' as time) < cast('24:00:00' as time);select cast('100:55:50' as time) < cast('024:00:00' as time);select cast('300:55:50' as time) < cast('240:00:00' as time);select cast('100:55:50' as time) > cast('24:00:00' as time);select cast('100:55:50' as time) > cast('024:00:00' as time);select cast('300:55:50' as time) > cast('240:00:00' as time);create table t1 (f1 time);insert into t1 values ('24:00:00');select cast('24:00:00' as time) = (select f1 from t1);drop table t1;## Bug#29739: Incorrect time comparison in BETWEEN.#create table t1(f1 time, f2 time);insert into t1 values('20:00:00','150:00:00');select 1 from t1 where cast('100:00:00' as time) between f1 and f2;drop table t1;## Bug#29729: Wrong conversion error led to an empty result set.#CREATE TABLE t1 ( f2 date NOT NULL, f3 int(11) unsigned NOT NULL default '0', PRIMARY KEY (f3, f2));insert into t1 values('2007-07-01', 1);insert into t1 values('2007-07-01', 2);insert into t1 values('2007-07-02', 1);insert into t1 values('2007-07-02', 2);SELECT sum(f3) FROM t1 where f2='2007-07-01 00:00:00' group by f2;drop table t1;
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?