in reply to Re^3: Distiguishing arguments: number-strings vs real integer
in thread Distiguishing arguments: number-strings vs real integer
some testing on MariaDB
CREATE TABLE `t_test_type` ( `f_num` INT(11) NULL DEFAULT NULL, `f_str` CHAR(50) NULL DEFAULT NULL ) ENGINE=MyISAM ; select * from t_test_type; 1;1 2;2 3;3 select * from t_test_type where f_str < "2.0"; 1;1 2;2 select * from t_test_type where f_str < 2.0; 1;1
Cheers Rolf
(addicted to the Perl Programming Language :)
Wikisyntax for the Monastery
FootballPerl is like chess, only without the dice
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^5: Distiguishing arguments: number-strings vs real integer
by mr_ron (Deacon) on Aug 12, 2018 at 00:28 UTC | |
by LanX (Saint) on Aug 12, 2018 at 00:41 UTC |