Question CHALLENGE ACTIVITY 3.6.1: Inserting, updating, and deleting rows. 34159213901360x3207 Start D-D-D-D- Refer to the column information produced by the SHOW COLUMNS FROM Country; statement. Result Field Null Key Default Extra Type varchar(50) Name NO NULL Population YES 0 integer char(2) ISOCode2 NO PRI NULL Complete the statement to correctly insert a row with Name 'Croatia, Population 4087843, and ISO Code2 'HR. Write the most straightforward code. INSERT INTO Country (Name, Population, ISOCode2) /* Your code here */

7QPLED The Asker · Computer Science

Transcribed Image Text: CHALLENGE ACTIVITY 3.6.1: Inserting, updating, and deleting rows. 34159213901360x3207 Start D-D-D-D- Refer to the column information produced by the SHOW COLUMNS FROM Country; statement. Result Field Null Key Default Extra Type varchar(50) Name NO NULL Population YES 0 integer char(2) ISOCode2 NO PRI NULL Complete the statement to correctly insert a row with Name 'Croatia, Population 4087843, and ISO Code2 'HR. Write the most straightforward code. INSERT INTO Country (Name, Population, ISOCode2) /* Your code here */
More
Transcribed Image Text: CHALLENGE ACTIVITY 3.6.1: Inserting, updating, and deleting rows. 34159213901360x3207 Start D-D-D-D- Refer to the column information produced by the SHOW COLUMNS FROM Country; statement. Result Field Null Key Default Extra Type varchar(50) Name NO NULL Population YES 0 integer char(2) ISOCode2 NO PRI NULL Complete the statement to correctly insert a row with Name 'Croatia, Population 4087843, and ISO Code2 'HR. Write the most straightforward code. INSERT INTO Country (Name, Population, ISOCode2) /* Your code here */