Advertisements
Advertisements
Question
Write suitable SQL query for the following:
Display details from 'email' column (attribute), in the 'Students' table, after removing any leading and trailing spaces
Code Writing
Solution
SELECT TRIM(email) FROM Students;
shaalaa.com
Is there an error in this question or solution?