Hi Friends,
My Table strct:
===========
create table show_bus
(
id int identity,
from_p varchar(100),
to_p varchar(100),
timin time
)
My Expecting OUTPUT:
================
insert into show_bus values('a','b','6:05 AM')
when i tried to enter these format its showing error on sql server 2000
kindly help to me