Mysql – How to make data in a table unable to be used (i.e. disallow to perform query on it)?
I have 2 tables in a database, users and users_removed with columns "id(primary key), email(unique), password" and "id, user_id(foreign key (user_id) references users(id)" respectively. When a user registers the users table gets the data accordingly. And when the user wants…