In Oracle DB, the command to display table definitions is DESCRIBE.
DESCRIBE tablename
By the way, to check table definitions in other databases, you execute the following commands respectively:
■ MySQL
desc tablename;
■ PostgreSQL
\\d tablename
That’s all from the Gemba regarding database table definition commands.
【References】