Unable to read the value of date column while fetching from database . Please help me out.
The corresponding date value is present in the following format as mentioned below where closeddate appears as date variable .
The following error is occurring if we use any conversion functions
ERROR: PROC SQL requires any created table to have at least 1 column.
PROC SQL;
CONNECT TO ODBC(
DATAsrc='DATALAKE'
USER='****'
password='******'
);
create table main as
select * from
connection to odbc
(
SELECT
*
FROM
PROD.CASE_S A
where A.closedate='20MAR2018:17:06:35.000000'
)
;
disconnect from odbc;
quit;
Looks like you need help with the syntax used in your remote database? Does the query you posted work? Does it generate an error? What is your actual issue?
What database are you connecting to? How does that database want users to specify a literal datetime value in code?
Registration is now open for SAS Innovate 2025 , our biggest and most exciting global event of the year! Join us in Orlando, FL, May 6-9.
Sign up by Dec. 31 to get the 2024 rate of just $495.
Register now!
Learn how use the CAT functions in SAS to join values from multiple variables into a single value.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.