Questions and Verified Answers |
Accurate Solutions | Get it 100%
Correct!! | Already Graded A+
What is SQL? - 🧠 ANSWER ✔✔SQL stands for Structured Query
Language. SQL lets you access and manipulate databases.
What can SQL do? - 🧠 ANSWER ✔✔SQL can execute queries against a
database
SQL can retrieve data from a database
SQL can insert records in a database
SQL can update records in a database
SQL can delete records from a database
SQL can create new databases
SQL can create new tables in a database
SQL can create stored procedures in a database
SQL can create views in a database
COPYRIGHT©PROFFKERRYMARTIN 2025/2026. YEAR PUBLISHED 2025. COMPANY REGISTRATION NUMBER: 619652435. TERMS OF USE. 1
PRIVACY STATEMENT. ALL RIGHTS RESERVED
,SQL can set permissions on tables, procedures, and views
Can SQL retrieve data from a database? - 🧠 ANSWER ✔✔Yes, SQL can
retrieve data from a database
Can SQL execute queries against a database? - 🧠 ANSWER ✔✔Yes, SQL
can execute queries against a database
Can SQL can insert records in a database? - 🧠 ANSWER ✔✔Yes, SQL
can insert records in a database
Can SQL update records in a database? - 🧠 ANSWER ✔✔Yes, SQL can
update records in a database
Can SQL delete records from a database? - 🧠 ANSWER ✔✔Yes, SQL can
delete records from a database
Can SQL create new databases? - 🧠 ANSWER ✔✔Yes, SQL can create
new databases
Can SQL create new tables in a database? - 🧠 ANSWER ✔✔Yes, SQL can
create new tables in a database
Can SQL create stored procedures in a database? - 🧠 ANSWER ✔✔Yes,
SQL can create stored procedures in a database
COPYRIGHT©PROFFKERRYMARTIN 2025/2026. YEAR PUBLISHED 2025. COMPANY REGISTRATION NUMBER: 619652435. TERMS OF USE. 2
PRIVACY STATEMENT. ALL RIGHTS RESERVED
,Can SQL create views in a database? - 🧠 ANSWER ✔✔Yes, SQL can
create views in a database
Can SQL set permissions on tables, procedures, and views? - 🧠 ANSWER
✔✔Yes, SQL can set permissions on tables, procedures, and views
What is RDBMS? - 🧠 ANSWER ✔✔RDBMS stands for Relational
Database Management System.
What is the Basis of SQL? - 🧠 ANSWER ✔✔RDBMS is the basis for SQL,
and for all modern database systems such as MS SQL Server, IBM DB2,
Oracle, MySQL, and Microsoft Access.
Where is the data stored in RDBMS? - 🧠 ANSWER ✔✔The data in
RDBMS is stored in database objects called tables.
What is a table? - 🧠 ANSWER ✔✔A table is a collection of related data
entries and it consists of columns and rows.
Are SQL queries case sensitive? - 🧠 ANSWER ✔✔SQL keywords are NOT
case sensitive
Is select is the same as SELECT in SQL? - 🧠 ANSWER ✔✔Yes, select is
the same as SELECT since SQL is not case sensitive
COPYRIGHT©PROFFKERRYMARTIN 2025/2026. YEAR PUBLISHED 2025. COMPANY REGISTRATION NUMBER: 619652435. TERMS OF USE. 3
PRIVACY STATEMENT. ALL RIGHTS RESERVED
, What is the function of the Semicolon in SQL? - 🧠 ANSWER ✔✔Semicolon
is the standard way to separate each SQL statement in database systems
that allow more than one SQL statement to be executed in the same call to
the server.
Can you have more than one statement to be executed in the same call to
the server? - 🧠 ANSWER ✔✔Yes, but a semicolon is needed to separate
each SQL Statement.
What are the four basic functions of persistent storage? - 🧠 ANSWER
✔✔The four basic functions of persistent storage can be defined by
acronym CRUD
What is CRUD? - 🧠 ANSWER ✔✔Create, Read/Retrieve (Select), Update
and Delete are the four basic functions of persistent storage.
What does the C in CRUD stand for? - 🧠 ANSWER ✔✔Create, C in CRUD,
stand for Create and is on of the four basic functions of persistent storage.
What does the R in CRUD stand for? - 🧠 ANSWER ✔✔Read/Retrieve
(Select), R in CRUD, stand for Read/Retrieve (Select) and is on of the four
basic functions of persistent storage.
COPYRIGHT©PROFFKERRYMARTIN 2025/2026. YEAR PUBLISHED 2025. COMPANY REGISTRATION NUMBER: 619652435. TERMS OF USE. 4
PRIVACY STATEMENT. ALL RIGHTS RESERVED