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;

Related questions

0 votes
0 votes
asked Jan 26, 2021 in Sql by SakshiSharma
0 votes
asked Sep 9, 2019 in Spark Sql by ivor2019
...