cancel
Showing results for 
Search instead for 
Did you mean: 
Subscribe

Hi, Please help me to write a query to insert timestamp value to Sybase table using insert query.

Regards, Bikshu.

View Entire Topic
jack_schueler
Product and Topic Expert
Product and Topic Expert

Here you go.

create table ts_table (ts timestamp);
insert into ts_table (ts) values ('2013-10-08T12:34:45.678');

Of course, I am sure that's not what you wanted to know, but it is what you asked.