BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
SciFiGuy0
Obsidian | Level 7

I've got a dataset containing a date field named Submitted:

01Jan2015

01Jan2015

01Jan2015

02Jan2015

03Jan2015

 

I'm running a simple query builder which produces this code:

PROC SQL;

CREATE TABLE WORK.Stuff AS

SELECT DISTINCT t1.Submitted

FROM WORK.INPUTSET t1

ORDER BY t1.Submitted;

QUIT;

 

The output result is:

01Jan2015

01Jan2015

01Jan2015

02Jan2015

03Jan2015

 

Shouldn't there only be three records in the output file? 

 

 

1 ACCEPTED SOLUTION

Accepted Solutions
PGStats
Opal | Level 21

If your date field is a SAS date, it may contain a fractional part, try using

 

CREATE TABLE WORK.Stuff AS
SELECT DISTINCT round(t1.Submitted) as Submitted format=date9.
FROM WORK.INPUTSET t1
ORDER BY Submitted;
QUIT;

if your date field is a SAS datetime, it may contain a time value, try using

 

CREATE TABLE WORK.Stuff AS
SELECT DISTINCT datepart(t1.Submitted) as Submitted format=date9.
FROM WORK.INPUTSET t1
ORDER BY Submitted;
QUIT;

 

PG

View solution in original post

1 REPLY 1
PGStats
Opal | Level 21

If your date field is a SAS date, it may contain a fractional part, try using

 

CREATE TABLE WORK.Stuff AS
SELECT DISTINCT round(t1.Submitted) as Submitted format=date9.
FROM WORK.INPUTSET t1
ORDER BY Submitted;
QUIT;

if your date field is a SAS datetime, it may contain a time value, try using

 

CREATE TABLE WORK.Stuff AS
SELECT DISTINCT datepart(t1.Submitted) as Submitted format=date9.
FROM WORK.INPUTSET t1
ORDER BY Submitted;
QUIT;

 

PG

hackathon24-white-horiz.png

2025 SAS Hackathon: There is still time!

Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!

Register Now

Creating Custom Steps in SAS Studio

Check out this tutorial series to learn how to build your own steps in SAS Studio.

Find more tutorials on the SAS Users YouTube channel.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 1 reply
  • 2870 views
  • 0 likes
  • 2 in conversation