BookmarkSubscribeRSS Feed
Feksan
Fluorite | Level 6

Hello.

I would like to delete the rows where the location is "World". This is my code and it doesn't delete it.

 

DELETE FROM d1.COVID_DATA
WHERE location="world";

2 REPLIES 2
AlanC
Barite | Level 11

I don't have SAS here (can't test) but try to make comparisons neutral, always. For example:

 

upcase(strip(location)) = "WORLD"

 

Lowcase works too.

https://github.com/savian-net
Reeza
Super User

Is that the full code you ran?

 

That wouldn't be valid, you ned to wrap your code in a proc or data step for starters. 

 

If it isn't the full code, please post the actual code and indicate what errors you received or why you think it isn't working. As @AlanC indicated the case does need to match as well. 

 

proc sql;
delete from d1.covid_data
where lowcase(location) = 'world';
quit;

@Feksan wrote:

Hello.

I would like to delete the rows where the location is "World". This is my code and it doesn't delete it.

 

DELETE FROM d1.COVID_DATA
WHERE location="world";


 

hackathon24-white-horiz.png

The 2025 SAS Hackathon Kicks Off on June 11!

Watch the live Hackathon Kickoff to get all the essential information about the SAS Hackathon—including how to join, how to participate, and expert tips for success.

YouTube LinkedIn

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
  • 2 replies
  • 868 views
  • 2 likes
  • 3 in conversation