解决 “操作无法完成,因为其中的文件夹或文件已在另一程序中打开” 2022-02-25 by admin·2,069阅读·0评论 在Windows删除文件或文件夹有时候会报: 操作无法完成,因为其中的文件夹或文件已在另一程序中打开 请关闭该文件夹或文件,然后重试。如下图: 但桌面可能并没有打开这个文件夹或文件。 这是因为后台某个程序打开或占用了这个文件,通常重启电脑可以解决这个问题,如 ......[阅读全文]
Postgresql 关系 “xx_yy_seq” 不存在 2022-02-24 by admin·881阅读·0评论 Postgresql运行SQL文件报错: 关系 "xx_yy_seq" 不存在 其中: xx是表名,yy是字段名 导出的Postgresql SQL文件如下: DROP TABLE IF EXISTS "public"."student"; CREATE TABLE "public"."student" ( "id" int4 NOT NULL DEFAULT nextval('student_id_seq'::regclass), ......[阅读全文]
操作符不存在: integer = character varying 2022-02-17 by admin·1,156阅读·0评论 <delete id="deleteStudentByIds" parameterType="String"> delete from student where id in <foreach item="id" collection="array" open="(" separator="," close=")"> #{id} </foreach> </delete> 用MyBatis批量删除Postg ......[阅读全文]