Subject Re: [IBO] Server time
Author tickerboo2002 <support@tickerboo.com>
> 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_time
> from table1

Yay! Is that preferable to:

select table1.*, CURRENT_TIMESTAMP as server_time

?

Thanks.