Files

10 lines
359 B
SQL
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
-- 根据 ecid 删除 dmp_md_item_info 表数据
-- 数据库:dmp_smdm(远程服务器 101.34.227.188
-- 使用前替换 ${ECID} 为实际值
-- 查看待删除的数据量
SELECT COUNT(*) AS delete_count FROM dmp_md_item_info WHERE ecid = '${ECID}';
-- 确认无误后取消注释执行删除
-- DELETE FROM dmp_md_item_info WHERE ecid = '${ECID}';