--BEGIN WORK; drop table sample_table; create table sample_table( user_id int, name text, tel text, constraint sample_table_pkey primary key(user_id) ); grant all on sample_table to nobody; --COMMIT;