how to get (lapse) time in microseconds ?

2007-01-05 Thread C.R.Vegelin
Hi List, I need the lapse time in microseconds. I have tried various things, like: SELECT TIME_FORMAT(CURTIME(), '%f'); SELECT TIME_FORMAT(NOW(), '%f'); SELECT MICROSECOND(CURTIME()); but all I get is 0. What am I doing wrong ? TIA, Cor

Re: how to get (lapse) time in microseconds ?

2007-01-05 Thread Chris White
C.R.Vegelin wrote: Hi List, I need the lapse time in microseconds. I have tried various things, like: SELECT TIME_FORMAT(CURTIME(), '%f'); SELECT TIME_FORMAT(NOW(), '%f'); Your arguments are reversed. It's: SELECT TIME_FORMAT('%f',CURTIME()); SELECT TIME_FORMAT('%f',NOW()); SELECT

Re: how to get (lapse) time in microseconds ?

2007-01-05 Thread C.R.Vegelin
. But a format like 0.05 sec is also right for me. Maybe any other ideas ? - Original Message - From: Chris White [EMAIL PROTECTED] To: C.R.Vegelin [EMAIL PROTECTED] Cc: mysql@lists.mysql.com Sent: Friday, January 05, 2007 3:58 PM Subject: Re: how to get (lapse) time in microseconds