SQL Timstamp Function
        Posted  
        
            by harrison
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by harrison
        
        
        
        Published on 2010-05-26T22:39:15Z
        Indexed on 
            2010/05/27
            1:31 UTC
        
        
        Read the original article
        Hit count: 276
        
Is there any difference between these two queries?
select * from tbl where ts < '9999-12-31-24.00.00.000000';
and
select * from tbl where ts < timestamp('9999-12-31-24.00.00.000000');
When is the timestamp function required? Is there a difference in performance?
© Stack Overflow or respective owner