1

describe syntax is not working in PLSql :

I am using below syntax :

DESCRIBE tblcustomer;

I am getting below exception after executing above query :

ERROR:  syntax error at or near "DESCRIBE"
LINE 1: DESCRIBE tblcustomer;
        ^

********** Error **********

ERROR: syntax error at or near "DESCRIBE"
SQL state: 42601
Character: 1
Shiladittya Chakraborty
  • 4,270
  • 8
  • 45
  • 94

1 Answers1

1

Use this instead:

\d tblcustomer

or this for more details

\d+ tblcustomer

List available \… commands

\?
Peter Gerber
  • 1,023
  • 10
  • 13