postgres=# create table tab1 (a int, b char(16)); postgres=# insert into tab1 values(93, 'xyz'); postgres=# select * from tab1; a | b ----+------------------ 93 | xyz (1 row)