I have an update statement written in SQL, which is :
UPDATE student
SET student.[studentno]=[enter studentno],
student.[avg]=[avg value];
What is the benefit of using the square brackets around “enter studentno” and “avg value” and what does this statement do? Does it allow the user to enter the values to be updated?