判断表是否被改变过
--判断表是否被更改select checksum_agg(binary_checksum(*)) from dbo.PrintLog--判断表中每行是否被修改 select binary_checksum(*) from dbo.PrintLog
?