Ask Your Question
1

How can you add a prefix to duplicated column names in Oracle SQL when using "create as select" statement?

asked 2023-05-03 23:19:28 +0000

qstack gravatar image

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
1

answered 2023-05-03 23:34:01 +0000

scrum gravatar image

To add a prefix to duplicated column names in Oracle SQL when using "create as select" statement, you can use the "AS" keyword to alias the column names with the desired prefix. For example:

CREATE TABLE new_table AS
SELECT col1 AS prefix_col1, col2 AS prefix_col2, col1 AS prefix_col3
FROM old_table;

In this example, the column names "col1" and "col3" are duplicated, so they are aliased with the prefix "prefix" to create unique names in the new table. The resulting column names in the new table will be "prefixcol1", "prefixcol2", and "prefixcol3".

edit flag offensive delete link more

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account. This space is reserved only for answers. If you would like to engage in a discussion, please instead post a comment under the question or an answer that you would like to discuss

Add Answer


Question Tools

Stats

Asked: 2023-05-03 23:19:28 +0000

Seen: 12 times

Last updated: May 03 '23