If there is a query via a php script which is vulnerable like
select email from mytable where id = $_REQUEST['id']
Is there a risk that someone can execute a truncate table etc using sql vulnerability.
This query is executed using mysql_query(). Multi queries are not allowed.
I understand that this is a vulnerable code. What I want to know is if someone can execute a delete or truncate. I want to know the extent of the vulnerability