Skip to Main Content

Oracle Database Discussions

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

select sysdate,* FROM table_name

772262Sep 9 2010 — edited Sep 9 2010
Hello All,
I would like to insert into a table with hardcoding few columns and rest select all columns from a table.

Insert into MIPS_NABEEL.GROUP_INFO_AUDIT
SELECT MIPS_NABEEL.SEQ_GROUP_INFO_AUDIT.NEXTVAL,
systimestamp,'I', *
FROM mips_nabeel.group_info

I tried
select sysdate,* FROM mips_nabeel.group_info;

Please can I know the exact syntax of using all columns + adding few columns in the query.

Thanks
This post has been answered by Centinul on Sep 9 2010
Jump to Answer
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Oct 7 2010
Added on Sep 9 2010
4 comments
881 views