摘要:
一) Discuz!的文件系统目录 注:想搞DZ开发,就得弄懂DZ中每个文件的功能。 a) Admin:后台管理功能模块 b) Api:DZ系统与其它系统之间接口程序 c) Archiver:DZ中,用以搜索引擎优化的无图版 d) Attachments:DZ中 ,用户上传附件的存放目录 e) Cu 阅读全文
摘要:
Oracle利用rowid删除表中重复记录先看表myemp查出有重复数据的记录查出没有重复数据的记录查出不重复的记录或者select * from myemp e where rowid = (select max(rowid) from myemp e2 where e.userid = e2.userid and e.username = e2.username and e.salary = e2.salary)如何删除重复数据1、 当有大量重复数据存在并且在列userid,username,salary上有索引的情况下delete myemp where rowid not in (se 阅读全文