Dec 4, 2006 #1 pkohli88 Programmer Oct 25, 2006 30 US Hi, Is there any easy way for selecting all fields EXCEPT one field from table. Thanks In Advance
Dec 4, 2006 #2 johnherman MIS Oct 10, 2003 2,323 US CREATE TABLE temp-table as SELECT * FROM your-table ALTER TABLE temp-table DROP COLUMN column-I-dont-want SELECT * from temp-table ------------------------- The trouble with doing something right the first time is that nobody appreciates how difficult it was - Steven Wright Upvote 0 Downvote
CREATE TABLE temp-table as SELECT * FROM your-table ALTER TABLE temp-table DROP COLUMN column-I-dont-want SELECT * from temp-table ------------------------- The trouble with doing something right the first time is that nobody appreciates how difficult it was - Steven Wright
Dec 4, 2006 #3 karluk MIS Nov 29, 1999 2,485 US In sql*plus you can define the column as "noprint" before running your query: Code: column column_name_to_exclude noprint select * from your_table; Upvote 0 Downvote
In sql*plus you can define the column as "noprint" before running your query: Code: column column_name_to_exclude noprint select * from your_table;