can I use DESC oracle function to display just the column name?
I know how to do this 开发者_StackOverflow中文版using SELECT but how can I do this using DESC?
No, you can't. These are the only options available regarding DESC
/DESCRIBE
:
- LINESIZE
- DEPTH
- INDENT
- LINE
Of those, DEPTH
would be the most likely - but all it does is lookup children objects & present their attributes in the list.
精彩评论