Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

remove-the-last-two-characters-from-a-string-column #260

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
-- Using LEFT Function

SELECT
LEFT(column_name, LENGTH(column_name) - 2) AS modified_name
FROM table_name;

-- Using SUBSTRING Function

SELECT
SUBSTRING(column_name, 1, LENGTH(column_name) - 2) AS modified_name
FROM table_name;

-- Handling Edge Cases

SELECT CASE
WHEN LENGTH(column_name) > 2 THEN LEFT(column_name, LENGTH(column_name) - 2)
ELSE column_name
END AS modified_name
FROM table_name;
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
-- Using SUBSTRING Function

SELECT
SUBSTRING(column_name FROM 1 FOR LENGTH(column_name) - 2) AS modified_name
FROM table_name;

-- Handling Edge Cases

SELECT CASE
WHEN LENGTH(column_name) > 2 THEN LEFT(column_name, LENGTH(column_name) - 2)
ELSE column_name
END AS modified_name
FROM table_name;
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
-- Using SUBSTRING Function

SELECT
SUBSTRING(column_name, 1, LEN(column_name) - 2) AS modified_name
FROM table_name;

-- Using LEFT Function

SELECT
LEFT(column_name, LEN(column_name) - 2) AS modified_name
FROM table_name;

-- Handling edge cases

SELECT CASE
WHEN LEN(column_name) > 2 THEN LEFT(column_name, LEN(column_name) - 2)
ELSE column_name
END AS modified_name
FROM table_name;