Subject | Re: [IBO] Server time |
---|---|
Author | tickerboo2002 <support@tickerboo.com> |
Post date | 2003-02-25T14:22:54Z |
> select * is bad practice. Period.Is it? It just seemed one less thing to change if I update the
table. I can imagine it's lazy sql though.
> select table1.*, cast('now' as timestamp) as server_timeYay! Is that preferable to:
> from table1
select table1.*, CURRENT_TIMESTAMP as server_time
?
Thanks.