I want to create a view from a table student and want to add an extra column. does this view take space at disk/file on adding extra column? here is my code:
CREATE OR REPLACE VIEW DETAILS
AS SELECT Name, Serial_number,NULL AS 'additional_field1' from student;