I have the table, with some columns contains null values, i tasked to move all the NULL values into left side, so the numeric values are moved from right to left in same order.
(for ex)
Column1 Column2 Column3 Column4
--------------------------------------------
NULL 1 NULL 3
1 NULL 3 2
1 2 3 NULL
Output should be
Column1 Column2 Column3 Column4
--------------------------------------------
1 3 NULL NULL
1 3 2 NULL
1 2 3 NULL