hi,all Пожалуйста, объясните мне глупому: mysql> create table test(some bigint unsigned); Query OK, 0 rows affected (0.00 sec) mysql> insert into test values(-1); Query OK, 1 row affected (0.00 sec) mysql> select some+1 from test; +--------+ | some+1 | +--------+ | 0 | +--------+ 1 row in set (0.00 sec) mysql> select sum(some)+1 from test; +----------------------+ | sum(some)+1 | +----------------------+ | 18446744073709551616 | +----------------------+ 1 row in set (0.00 sec) mysql> -- -------- Regards, Pavel. "He's the kind of man for the times that need the kind of man he is ..." =================================================================== uanog mailing list. To Unsubscribe: send mail to majordomo@uanog.kiev.ua with "unsubscribe uanog" in the body of the message
Hi Pavel,
Пожалуйста, объясните мне глупому:
mysql> create table test(some bigint unsigned); Query OK, 0 rows affected (0.00 sec)
mysql> insert into test values(-1); Query OK, 1 row affected (0.00 sec)
А зачем пихать в unsigned отрицательное число? По приколу? -- Michael Мужчина - это всего лишь мужчина. А хороший велосипед - это еще и поездка. =================================================================== uanog mailing list. To Unsubscribe: send mail to majordomo@uanog.kiev.ua with "unsubscribe uanog" in the body of the message
Wed, Jul 31, 2002 at 23:03:09, paul wrote about "[uanog] mysql":
mysql> select sum(some)+1 from test; +----------------------+ | sum(some)+1 | +----------------------+ | 18446744073709551616 | +----------------------+
Это равно ровно 2**64 По-моему, вполне логично ;))))))) /netch =================================================================== uanog mailing list. To Unsubscribe: send mail to majordomo@uanog.kiev.ua with "unsubscribe uanog" in the body of the message
Добрый день, есть необходимость передать по медной паре(ам) Е1 на 500м. кабель можно положить любой. что можно на это дело закупить подешевле и, конечно, понадежнее(с одной стороны питание 60V, сертификат)? какие чего есть опыты эксплуатации? Любомир Ференц =================================================================== uanog mailing list. To Unsubscribe: send mail to majordomo@uanog.kiev.ua with "unsubscribe uanog" in the body of the message
Проводами. Вам достаточно будет просто проводов...
--
Igor Vorontsov
IV-UANIC, IV144-RIPE
CCNA, SCSA, SCWSE
----- Original Message -----
From: "Lyubomyr Ferents"
Добрый день,
есть необходимость передать по медной паре(ам) Е1 на 500м.
кабель можно положить любой.
что можно на это дело закупить подешевле и, конечно, понадежнее(с одной стороны питание 60V, сертификат)?
какие чего есть опыты эксплуатации?
Любомир Ференц
=================================================================== uanog mailing list. To Unsubscribe: send mail to majordomo@uanog.kiev.ua with "unsubscribe uanog" in the body of the message
=================================================================== uanog mailing list. To Unsubscribe: send mail to majordomo@uanog.kiev.ua with "unsubscribe uanog" in the body of the message
Igor Vorontsov wrote:
Проводами. Вам достаточно будет просто проводов...
там наводки или еще какая гадость - проверено, идут ошибки. =================================================================== uanog mailing list. To Unsubscribe: send mail to majordomo@uanog.kiev.ua with "unsubscribe uanog" in the body of the message
On Thu, 1 Aug 2002, Lyubomyr Ferents wrote:
Igor Vorontsov wrote:
Проводами. Вам достаточно будет просто проводов...
там наводки или еще какая гадость - проверено, идут ошибки.
А если попробовать кабель в экране? - экран на землю.
=================================================================== uanog mailing list. To Unsubscribe: send mail to majordomo@uanog.kiev.ua with "unsubscribe uanog" in the body of the message
-- VP992-RIPE =================================================================== uanog mailing list. To Unsubscribe: send mail to majordomo@uanog.kiev.ua with "unsubscribe uanog" in the body of the message
On Thu, Aug 01, 2002 at 12:30:13PM +0300, Valentin Nechayev wrote:
Wed, Jul 31, 2002 at 23:03:09, paul wrote about "[uanog] mysql":
mysql> select sum(some)+1 from test; +----------------------+ | sum(some)+1 | +----------------------+ | 18446744073709551616 | +----------------------+
Это равно ровно 2**64
По-моему, вполне логично ;)))))))
нет, я не понял почему n+1 и сумма из того же единственного n +1 не равны mysql> select sum(some)=some from test; +----------------+ | sum(some)=some | +----------------+ | 1 | +----------------+ 1 row in set (0.00 sec) mysql> select (sum(some)+1)=(some+1) from test; +------------------------+ | (sum(some)+1)=(some+1) | +------------------------+ | 0 | +------------------------+ 1 row in set (0.01 sec) mysql>
/netch =================================================================== uanog mailing list. To Unsubscribe: send mail to majordomo@uanog.kiev.ua with "unsubscribe uanog" in the body of the message
-- -------- Regards, Pavel. "He's the kind of man for the times that need the kind of man he is ..." =================================================================== uanog mailing list. To Unsubscribe: send mail to majordomo@uanog.kiev.ua with "unsubscribe uanog" in the body of the message
participants (6)
-
Igor Vorontsov
-
Lyubomyr Ferents
-
Michael Petuschak
-
Pavel Kuz
-
raven@adamant.net
-
Valentin Nechayev