首页 > 代码库 > sql中binary_checksum(*)的用法
sql中binary_checksum(*)的用法
sql中binary_checksum(*)的用法(转)
binary_checksum(*)可以用来检查修改过的行。
同一行在update后,该行的binary_checksum(*)就不同。 如
select title_id,binary_checksum(*) from titles where title_id=1 时title_id=1 的该行的binaru_checksum(*) 的值为123456 若此时 update titles set title=‘ddd‘ where title_id=1
再执行select title_id,binary_checksum(*) from titles where title_id=1 会发现binary_checksum(*)的值发生了改变。
利用这个特性,我们可以先执行select title_id,binary_checksum(*) into t1 from titles 比如某段时间后需要检查或者在某个操作后需要检查有那些行发生了变化 就可以通过语句 select a.* from titles a,t1 b where a.title_id=b.title_id and a.binary_checksum(*)<>b.binary_checksum(*)
sql中binary_checksum(*)的用法
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。