You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If you want to convert the values in the ename column of a table to uppercase in Oracle SQL, you can use the UPPER function. The UPPER function converts all characters in a string to uppercase. Here's an example query:
UPDATE your_table_name
SET ename = UPPER(ename);
also if we put number as input then it shoul show error
similar for Uppercase to lowercase
The text was updated successfully, but these errors were encountered:
sagarbee
changed the title
Create new section to convert word from lower to uppercase
Create new section as "String Manipulation" inside -> convert word from lower to uppercase and Upper to lower case
Jan 6, 2024
Hello @sagarbee,
Thank you for creating an issue on this! ⭐
Yah that a cool feature to add!
So, I'm officially assigning this task to you under SWOC. So feel free to start working on it.
Please keep me updated on your progress through images/videos in the comment section before raising the PR.
PS: Always mention the issue number in your PR in the following format: Resolve issue #<issue_number>
If you have any questions or need clarification, don't hesitate to ask in the comments or on Discord [Find #sql-dev-tools channel].
Hey @sagarbee,
What's your working progress on this.
PS: This is to inform you that, some issues are taking longer than expected to implement. If you find that any issue is taking too much time, please ensure to clone the recent version of the repository before making changes. This is important as others may have added new features that could affect your work.
If you want to convert the values in the ename column of a table to uppercase in Oracle SQL, you can use the UPPER function. The UPPER function converts all characters in a string to uppercase. Here's an example query:
UPDATE your_table_name
SET ename = UPPER(ename);
also if we put number as input then it shoul show error
similar for Uppercase to lowercase
The text was updated successfully, but these errors were encountered: