This is OT for XOJO, my apologies, but I’ve helped plenty… =)
I’m not familiar with SQL but I need to make a range edit in phpMyAdmin. For a single deletion of a post in this database, this works and looks like this:
DELETE FROM chickens_pbb02
.posts
WHERE posts
.post_time
= 1472310211;
I try a range, and guessing this:
DELETE FROM chickens_pbb02
.posts
WHERE posts
.post_time
BETWEEN 1470854475 AND 1472310211;
I get a syntax error. Where am I going wrong?