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?

  • Drop database {name}; - Vladimir Klykov
  • He also seems to delete the entire database, but I need the exact id in the table, and there are three tables in the database. - Sasuke Uchiha
  • Yeah, the database is entirely with data and tables =) but immediately in one action =) and not as many as three requests =) - Vladimir Klykov

0