Below is a table description and its data. Is the table in T…
Below is a table description and its data. Is the table in Third Normal Form (3NF)? If not in 3NF, select the reason why it is not in 3NF. mysql> DESC shows;+————–+————-+——+—–+———+—————-+| Field | Type | Null | Key | Default | Extra |+————–+————-+——+—–+———+—————-+| id | int(11) | NO | PRI | NULL | auto_increment || name | varchar(50) | YES | | NULL | || network_id | int(11) | YES | | NULL | || network_name | varchar(30) | YES | | NULL | || network_ph | varchar(15) | YES | | NULL | |+————–+————-+——+—–+———+—————-+mysql> SELECT * FROM shows;+—-+—————-+————+————–+————–+| id | name | network_id | network_name | network_ph |+—-+—————-+————+————–+————–+| 1 | Raven’s Home | 10 | Disney | 813-555-1212 || 2 | Friends | 30 | NBC | 925-555-3434 || 3 | The Good Place | 30 | NBC | 925-555-3434 || 4 | Young Sheldon | 20 | CBS | 727-555-5656 |+—-+—————-+————+————–+————–+