Constraints PostgreSQL

postgres=# CREATE TABLE products (
postgres(#    product_no integer NULL,
postgres(#    name text NULL,
postgres(#    price numeric NULL
postgres(# );
CREATE TABLE
postgres=# drop table products;
DROP TABLE
postgres=#
postgres=#