May 15, 2019 at 12:02 pm
select top 10 BLLG_END_DT,
SUBSTRING(BLLG_END_DT, 1, 10),
CAST(CKRFT.BLLG_END_DT AS VARCHAR(100))AS BLLG_END_DT
,CKRFT.TRKR_ST_DT,CAST(CKRFT.TRKR_ST_DT AS VARCHAR(100))AS Trkr_St_Dt
from DF_DENORM.FORECAST.CK_RFT_DEAL_PRD_CUST_ASSOC AS CKRFT
Existing records
2011-07-02 00:00:00.000
Expected record
2011-07-02
WHEN I RUN THIS SCRIPT I GET BELOW ERROR FOR SUBSTRING CODE
Argument data type datetime is invalid for argument 1 of substring function.
May 15, 2019 at 12:45 pm
Looks like you are trying to use a string function on a datetime field.
--instead of this
--SELECT SUBSTRING(GETDATE(),1,10)
--do this
SELECT CAST(GETDATE() AS DATE)
May 15, 2019 at 12:47 pm
substring fuction expects a string to work with
you column BLLG_END_DT is of datetime type
to get the desired result try the following:
SELECT TOP 10
BLLG_END_DT
--,SUBSTRING(BLLG_END_DT, 1, 10)
,format(BLLG_END_DT, 'yyyy-MM-dd') AS BLLG_END_DT
,CAST(CKRFT.BLLG_END_DT AS VARCHAR(100)) AS BLLG_END_DT
,CKRFT.TRKR_ST_DT
,CAST(CKRFT.TRKR_ST_DT AS VARCHAR(100)) AS Trkr_St_Dt
FROM DF_DENORM.FORECAST.CK_RFT_DEAL_PRD_CUST_ASSOC AS CKRFT
May 15, 2019 at 2:33 pm
substring fuction expects a string to work with you column BLLG_END_DT is of datetime type to get the desired result try the following:
SELECT TOP 10
BLLG_END_DT
--,SUBSTRING(BLLG_END_DT, 1, 10)
,format(BLLG_END_DT, 'yyyy-MM-dd') AS BLLG_END_DT
,CAST(CKRFT.BLLG_END_DT AS VARCHAR(100)) AS BLLG_END_DT
,CKRFT.TRKR_ST_DT
,CAST(CKRFT.TRKR_ST_DT AS VARCHAR(100)) AS Trkr_St_Dt
FROM DF_DENORM.FORECAST.CK_RFT_DEAL_PRD_CUST_ASSOC AS CKRFT
Beware of using FORMAT as it is extremely slow.
You will get much better performance by using CONVERT
SELECT TOP 10
BLLG_END_DT
--,SUBSTRING(BLLG_END_DT, 1, 10)
,CONVERT(varchar(10), BLLG_END_DT, 120) AS BLLG_END_DT
,CAST(CKRFT.BLLG_END_DT AS VARCHAR(100)) AS BLLG_END_DT
,CKRFT.TRKR_ST_DT
,CAST(CKRFT.TRKR_ST_DT AS VARCHAR(100)) AS Trkr_St_Dt
FROM DF_DENORM.FORECAST.CK_RFT_DEAL_PRD_CUST_ASSOC AS CKRFT
Viewing 4 posts - 1 through 4 (of 4 total)
You must be logged in to reply to this topic. Login to reply
This website stores cookies on your computer.
These cookies are used to improve your website experience and provide more personalized services to you, both on this website and through other media.
To find out more about the cookies we use, see our Privacy Policy