Get data type of field in select statement in ORACLE

后端 未结 7 1493
半阙折子戏
半阙折子戏 2020-12-25 13:04

Can I get data types of each column I selected instead of the values, using a select statement?

FOR EXAMPLE:

SELECT a.name, a.surname, b.ordernum 
FR         


        
7条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2020-12-25 13:09

    I came into the same situation. As a workaround, I just created a view (If you have privileges) and described it and dropped it later. :)

提交回复
热议问题