跨库,表关联的查询,实现起来很简单: select a.uid from ucenter.user a , database user_profile b where a.uid = b.uid; 只要在表的前边加上库名即可。 这个是我项目中xml 中的一个例子,项目采用的是springmvc,持久层框架就是mybatis: 项目的数据源配置: 参考 h
postgres删除重复数据 sql语句: delete from table where ctid not in (select min(ctid) from table group by tableColumn) 其中: table是数据表表名, tableColumn是判断数据是否重复的关键列,根据情况替换;ctid是postgres中的关键字,不可替换。可以将min(ctid)换成