I do this in phpMyAdmin, but the data is not deleted:
DELETE FROM images_big WHERE filename = '22.jpg' How to make the data deleted in a particular place?
I do this in phpMyAdmin, but the data is not deleted:
DELETE FROM images_big WHERE filename = '22.jpg' How to make the data deleted in a particular place?
As an option, it is better to separate the contents of the filename by adding it to a separately created table, where there will be a link to u_login, and then delete it.
Then you don’t have to delete the whole entry that contains something else besides "22.jpg" in "filename".
PS Or delete using LIKE:
DELETE FROM images_big WHERE filename LIKE '22.jpg%' Source: https://ru.stackoverflow.com/questions/575550/
All Articles