SELECT LTRIM(' plus2net.com')// Output plus2net.com
UPDATE student SET name=LTRIM(name)
We can add space to a column and also display the same after removing space.
SELECT concat(' ',name), ltrim(concat(' ',name)) from student
Read more on CONCAT