Views in Relational Databases
Views are about providing a customized, filtered representation of the data
Simple View in MySQL
simple views are virtual tables taking no space on physical hard disks. syntax in MySQL:
create view lvl_300_stds as
select * from students where level_i...
abd-elrahman.hashnode.dev3 min read