1、错误描写叙述
2、错误原因
在PostgreSQL数据库中。创建数据库表时。弹出上述错误提示框
3、解决的方法
利用SQL语句创建表
create table t_student(
id int,
name varchar(12)
);