Question 20 Below is a table description and its data: mysql…
Questions
Questiоn 20 Belоw is а tаble descriptiоn аnd its data: mysql> DESC projects; +---------+--------------+------+-----+---------+----------------+ | Field | Type | Null | Key | Default | Extra | +---------+--------------+------+-----+---------+----------------+ | id | int | NO | PRI | NULL | auto_increment | | title | varchar(50) | YES | | NULL | | | members | varchar(100) | YES | | NULL | | +---------+--------------+------+-----+---------+----------------+ mysql> SELECT* FROM projects; +----+------------------+_______________+ | id | title | members | +----+------------------+_______________+ | 1 | Mobile App | Alice, Bob, Charlie | | 2 | AI Chatbot | Diana, Evan | +----+------------------+_______________+ Is the above table in First Normal Form (1NF)?