atlasdb=# create table test_tab(id int,name varchar(20),e_mail varchar(20),d_id int); CREATE TABLE atlasdb=# \dt+ List of relations Schema | Name | Type | Owner | Size | Description --------+----------+-------+---------+---------+------------- public | test_tab | table | atlasdb | 0 bytes | (1 row) atlasdb=# insert into test_tab values(1,'hemny','hemny@qq.com',10); INSERT 0 1 atlasdb=# select * from test_tab ; id | name | e_mail | d_id ----+-------+--------------+------ 1 | hemny | hemny@qq.com | 10 (1 row) atlasdb=#