Postgresql的字符串需要用单引号引起来,而不能用双引号引起来,比如,如果你要执行一条插入语句
insert into foo(name)values("Jash")
这样Postgresql是不认的,需要把双引号改为单引号,如下
insert into foo(name)values('Jash')