When selecting field data type, the suggested always fully qualify type name, like pg_catalog.varchar (255), which is
unnecessary while we can use just varchar (255), for example:
CREATE TABLE doctors (
first_name VARCHAR(255),
last_name VARCHAR(255),
specialization pg_catalog.varchar (255),
acrive BOOL
);
Ash1973S suggests that when selecting field data types, the system should not fully qualify type names with 'pg_catalog'. They propose using 'varchar (255)' instead of 'pg_catalog.varchar (255)' for simplicity and clarity in SQL table creation.