0 votes
in Sql by
Can we rename a column in the output of the SQL query?

1 Answer

0 votes
by
Yes, using the following syntax we can do this.

SELECT column_name AS new_name FROM table_name;
...