Looking for CS 231-G2 - Introduction to databases - Spring 2025 test answers and solutions? Browse our comprehensive collection of verified answers for CS 231-G2 - Introduction to databases - Spring 2025 at lms.musteducation.tn.
Get instant access to accurate answers and detailed explanations for your course questions. Our community-driven platform helps students succeed!
Which SQL query retrieves the current salary of an employee with emp_no = 20005?
Which SQL query retrieves the employee numbers of all employees working in department 'd002'?
Which SQL query retrieves the birth date of the employee with emp_no = 10500?
What does the 'datatype' parameter in the CREATE TABLE statement specify?
What is the purpose of the SQL CREATE DATABASE statement?
Write the correct SQL statement to create a new database called testDB.
;
Which of the following SQL statements will create a table named 'Books' with columns for ID, Title, and Author?
Write the correct SQL statement to create a new table called Persons.
(
PersonID int,
LastName varchar(255),
FirstName varchar(255),
Address varchar(255),
City varchar(255)
);
What is the primary purpose of the SQL CREATE TABLE statement?