I have searched far and wide, but I can\'t seem find a way to convert julian to yyyy-mm-dd.
yyyy-mm-dd
Here is the format of my julian:
The Julian format
You can select each part of the date using datepart()
datepart()
SELECT DATEPART(yy, 95076), DATEPART(dy, 95076)
+++EDIT: I misunderstood something. Here's my correction: +++++
SELECT DATEADD(day, CAST(RIGHT('95076',3) AS int) – 1, CONVERT(datetime,LEFT('95076',2) + '0101', 112))