I need to select all columns of table:
SELECT * FROM table_name
is there any way to trim all values without naming one by one like this ?
SELECT TRIM(*) FROM table_name
I need to select all columns of table:
SELECT * FROM table_name
is there any way to trim all values without naming one by one like this ?
SELECT TRIM(*) FROM table_name