String query="DELETE FROM users and there may be many tables in the database
WHERE id="+ID; Is it possible to go through all three tables at once, so as not to write the same function three times?
String query="DELETE FROM users and there may be many tables in the database
WHERE id="+ID; Is it possible to go through all three tables at once, so as not to write the same function three times?
Source: https://ru.stackoverflow.com/questions/917009/
All Articles