8 lines
92 B
SQL
8 lines
92 B
SQL
UPDATE `mail`
|
|
SET `send_id`='0'
|
|
WHERE `send_id` NOT IN (
|
|
select `char_id`
|
|
from `char`
|
|
)
|
|
;
|