CREATE table Demo (A varchar (10), B varchar (10));
INSERT into Demo values (101,567);
UPDATE Demo Set B = NULL":
What will be the result of the statement given below, if executed after the above statement
SELECT*from Demo:
Answers
Answered by
5
Answer:
From which chapter you talking
Similar questions