A relational database consists of tables. O True False Consider the following table named employee. Which SQL statement
Posted: Mon Jun 06, 2022 12:24 pm
Consider the following table named employee. Which SQL statement is used to retrieve the ID of the tuple with the FirstName of Kevin. Table: employee ID FirstName LastName 1 John Doe 2 Mary Jane 3 Kevin Kade O SELECT FirstName FROM employee WHERE ID = 3; SELECT ID FROM employee WHERE FirstName = "Kevin"; O SELECT FROM employee WITH FirstName = "Kevin"; SELECT ID FROM employee;