1.Xóa sạch dữ liệu liên quan đến tài khoản.
Nếu dùng chỉ mỗi câu lệnh SELECT * FROM edu_app.tbl_users where id = 3511521;
sẽ không xoá sạch hết được ở những bảng khác => rác dữ liệu
SELECT * FROM edu_app.tbl_indentity where user_id = 3511521;
SELECT * FROM edu_app.tbl_profile where users_id = 3511521;
SELECT * FROM edu_app.tbl_users where id = 3511521;
SELECT * FROM edu_app.tbl_user_has_app where users_id = 3511521;
SELECT * FROM edu_app.tbl_indentity where type = 6 and user_id = 3511521;
HDEL USER_INFO_ 3937936_2
HDEL LOGIN_TYPE_SKIP_BY_DEVICE_ID_ 8969520
2.Hướng Dẫn Reset Tài Khoản Skip
B1: Xóa những tài khoản liên kết với device hiện tại:
SELECT * FROM edu_app.tbl_users_has_device where device_id = 8322440;
B2: Dùng tool https://github.com/qishibo/AnotherRedisDesktopManager/releases
B1: Check xem có nhưng UID nào trên device.
SELECT * FROM edu_app.tbl_users_has_device where device_id = 8322440;
B2: Lấy những user_id từ câu lệnh ở bước 1 VD user_id=2190653, xoá hết những thông tin user_id đó thông qua những câu lệnh.
SELECT * FROM edu_app.tbl_profile where users_id = 2190653;
SELECT * FROM edu_app.tbl_users where id = 2190653;
SELECT * FROM edu_app.tbl_indentity where user_id = 2190653;
B3: Dùng tool https://github.com/qishibo/AnotherRedisDesktopManager/releases
mở Resdis console gõ những dòng lệnh sau:
HDEL USER_INFO_ 2190653_2
HDEL LOGIN_TYPE_SKIP_BY_DEVICE_ID_ 8969520
SELECT @id := users_id,@did := device_id FROM edu_app.tbl_users_has_device where device_id = 3953034
DELETE FROM edu_app.tbl_profile where users_id = @id;
DELETE FROM edu_app.tbl_users where id = @id;
DELETE FROM edu_app.tbl_indentity where user_id = @id;
DELETE FROM edu_app.tbl_users_has_device where device_id = @did;