Multiple choice Which of the following syntaxes is not correct for column or table aliasing in SQL? Select id,item,(sp-cp) as profit from product; Select id,item,(sp-cp) profit from product; Select id,item,(sp-cp)=profit from product; Select id,p.item, from product p; None of these Reveal answer Fill a bubble to check yourself C Correct answer Explanation The oracle database shows an error: FROM keyword not found where expected Option 3 is the correct answer.