libname ABCDEFGH postgres server="Server_Address.com" port=5432 user=kevin password="P@ssW0rd" database=DBName schema=SchemaName; Data work.Upper_Case_example; lower_case = 'The string that we want to make uppercase.'; result = UPCASE(lower_case); run; |
Lowercase | Result |
---|---|
The string that we want to make uppercase. | THE STRING THAT WE WANT TO MAKE UPPERCASE. |
libname ABCDEFGH postgres server="Server_Address.com" port=5432 user=kevin password="P@ssW0rd" database=DBName schema=SchemaName; Data work.lower_case_example; Upper_case = 'THE STRING WE WANT TO MAKE LOWERCASE.'; result = Lowcase(Upper_case); run; |
Lowercase | Result |
---|---|
THE STRING WE WANT TO MAKE LOWERCASE. | the string we want to make lowercase. |
Kevin Regan
Have an article, idea, found a typo, want to contribute? Shoot me an email
Here
Below are links to some Udemy Data Science Courses. I've been using Udemy for a number of years now, and I've found their courses super helpful, maybe you will also.