Course Hive
Search

Welcome

Sign in or create your account

Continue with Google
or
How to Use Datetime in SQL - SQL Training Online - Quick Tips Ep33
Play lesson

Basic SQL Training - How to Use Datetime in SQL - SQL Training Online - Quick Tips Ep33

5.0 (3)
23 learners

What you'll learn

This course includes

  • 10.3 hours of video
  • Certificate of completion
  • Access on mobile and TV

Summary

Keywords

Full Transcript

How to use a Datetime in SQL. The datetime is actually made up of two different pieces: 1) Date 2) Time This can be demonstrated using the SQL Cast function on a string to convert it to a datetime. Here is some SQL for the Date portion: select cast('20121019' as datetime) Here is some SQL for the Time portion: select cast('10:05:00' as datetime) Now, you can also simply use the built-in getdate() function to bring back the current system time. select getdate() And finally, I want to bring back a datetime from an actual table. In this case, we will use the employee table from the SQL Training Online Simple DB: select hire_date from employee If we want to convert the result to a more formatted string, we will use the TSQL CONVERT function: select convert(varchar,hire_date,104) from employee In this example, we are converting from a datetime to a varchar (string). The result will be in the format of 104. To translate 104 to a datetime format, you will want to look at the MSDN Documentation. If you enjoy the video, please give it a like, comment, or subscribe to my channel. READ THE ORIGINAL ARTICLE WITH SQL SCRIPTS HERE http://www.sqltrainingonline.com/ YOUTUBE NEWS UPDATES http://www.youtube.com/user/sqltrainingonline VISIT SQLTRAININGONLINE.COM FOR MORE VIDEO NEWS & TIPS http://www.sqltrainingonline.com SUBSCRIBE FOR OTHER SQL TIPS AND NEWS! http://www.youtube.com/subscription_center?add_user=sqltrainingonline SUBSCRIBE TO OUR EMAIL LIST! http://www.sqltrainingonline.com LET'S CONNECT! Facebook: http://facebook.com/SQLTrainingOnline Twitter: http://twitter.com/sql_by_joey Linkedin: http://linkedin.com/in/joeyblue SQLTrainingOnline: http://www.sqltrainingonline.com

Course Hive

Continue this lesson in the app

Install CourseHive on Android or iOS to keep learning while you move.

Related Courses

FAQs

Course Hive
Download CourseHive
Keep learning anywhere