I have a example SQL code like below
select *
from Engg_Studens
where Student_Name = '&Student_Name'
And Department = 'computer science & Engineering' ;
My question here is: while running the SQL, it is asking for the substitution variable for '& engineering'
which is in department name.
I should only be asked for '&student_name'
.