I am trying to get all the column data in a table. For example I have a table called User and it has 2 columns name, hobby.
By running an sql query I want the following info.
name type=varchar2 length=50
hobby type=varchar2 length=100
Is there an SQL query that can be run to obtain this information? I am only able to find queries which tries to fetch the length of largest data in the column. But I want to get the actual length the column has been setup.
Using Datagrip but due to my read only access in production environment, I am not able to see the values in tree view. Please assist. Thanks.