By using db<>fiddle, you agree to license everything you submit by Creative Commons CC0.
create table t (c1 char(3), c2 varchar(3));
✓
insert into t values ('1', '2'), ('1234567890', '1234567890');
✓
select *
from t;
c1 | c2 |
---|---|
1 | 2 |
1234567890 | 1234567890 |