I am studying for the 70-461 exam and was wondering a few things.
First and foremost,
how much emphasis does the exam put on knowledge of the DateTime formats?
for example:
by the book, the date format command to return the date in a mm/dd/yyyy format is
SELECT CONVERT(VARCHAR(10), GETDATE(), 101) AS 'Date 10-101';
However;
I know that I can get the same results using this condensed version:
SELECT CONVERT(CHAR, GETDATE(), 101) AS 'Date 101';
For test purposes, does it matter how I get the results?
Also, do I need to memorize all the date formats or just key ones?
In my day-to-day work, I use my basic date formats. But, if I need the date returned in a specific format, I reference a chart I have made.
Any suggestions would be greatly appreciated.
I’m not looking for answers to the test, just little details about what to expect on the test, like this.
Thanks.