home page
about us
consulting service
maintenance plan
training
faqs
hints and tips
resources
how to
testimonials
news
blog
case studies
clients
register
log in
contact us
The SQL Code to convert a field to a specified date time format is:
CONVERT(Data Type(length), field to be converted, Numeric format Code)
So to display todays date in the format dd/mm/yyyy:
CONVERT(varchar(25), Getdate(), 103)