PowerDesigner--comment和name互相复制
摘要:1、comment复制到name 脚本代码: Option Explicit ValidationMode = True InteractiveMode = im_Batch Dim mdl Set mdl = ActiveModel If (mdl Is Nothing) Then MsgBox
阅读全文
数据库中删除重复数据并保留一条
摘要:删除数据,并保留一条,保留的是伪列rowid最小的一条数据,如果有其他的需求,可以稍微自己改一改就可以保留自己要想的数据 。 delete from table_name awhere a.name in(select name from table_name group by name havin
阅读全文
Java实现定时器的四种方式
摘要:package com.wxltsoft.tool; import org.junit.Test; import java.util.Calendar; import java.util.Date; import java.util.Timer; import java.util.TimerTask
阅读全文