A relational database consists of tables. O True False Consider the following table named employee. Which SQL statement
-
- Site Admin
- Posts: 899603
- Joined: Mon Aug 02, 2021 8:13 am
A relational database consists of tables. O True False Consider the following table named employee. Which SQL statement
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;