100% satisfaction guarantee Immediately available after payment Both online and in PDF No strings attached 4.2 TrustPilot
logo-home
Exam (elaborations)

ISM 4212 EXAM 2 STUDY GUIDE 2026 COMPLETE QUESTIONS WITH CORRECT DETAILED ANSWERS || 100% GUARANTEED PASS <RECENT VERSION>

Rating
-
Sold
-
Pages
42
Grade
A+
Uploaded on
30-11-2025
Written in
2025/2026

ISM 4212 EXAM 2 STUDY GUIDE 2026 COMPLETE QUESTIONS WITH CORRECT DETAILED ANSWERS || 100% GUARANTEED PASS &lt;RECENT VERSION&gt; 1. What are the different types of SQL? - ANSWER Data definition, data manipulation, and data control. 2. What does DDL do and what does it stand for? - ANSWER Data definition language. They are commands that define (create) and establish constraints. 3. What does DML do and what does it stand for? - ANSWER Data manipulation language. Includes commands that maintain and query a database. 4. What does DCL do and what does it stand for? - ANSWER Data control language. 5. They are commands that administer privileges and execute data. 6. What is referential integrity? - ANSWER A constraint that states that foreign key values of a table must match primary key values of the related table. 7. Give the basic form for making a table in SQL. - ANSWER CREATE TABLE tblname (columnname1 datatype not null primary key,.....) 8. How do you add a FK to a table? - ANSWER ALTER TABLE tblname ADD FOREIGN KEY (blankid) references tblname2(blankid) 9. How do you insert a full row of data into a table? - ANSWER INSERT INTO tblname VALUES (1, 'Dodgers', '01/02/1980') 10. How do you insert a partial row of data? - ANSWER INSERT INTO tblname (columnname1, comulmnname2) VALUES ('no',1) 11. How do you delete a whole table from a DB? - ANSWER DROP TABLE tblname 12. How do you delete all rows from a table? - ANSWER DELETE FROM tblname 13. Database Management System - ANSWER Software that handles the storage, retrieval, and updating of data in a computer system 14. Data Definition Language (DDL) - ANSWER Commands that define a database, including creating, altering, and dropping tables and establishing constraints. 15. Data Manipulation Language (DML) - ANSWER Commands that maintain and query a database 16. Data Control Language (DCL) - ANSWER Commands that control a database, including administering privileges and committing data 17. DDL - ANSWER CREATE tables, indexes, and views Establish foreign keys Drop or truncate tables 18. DML - ANSWER INSERT data UPDATE the database Manipulate the database: SELECT 19. DCL - ANSWER GRANT, ADD, REVOKE 20. Char(n) - ANSWER Stores string/text characters; fixed length Example: Char(2) 21. Varchar(n) - ANSWER Stores string/text characters; variable length Example: Varchar(255) 22. What is the purpose of the GROUP BY statement in SQL? - ANSWER To group the results by one or more columns. 23. Which SQL functions are commonly used with the GROUP BY statement? - ANSWER COUNT, MAX, MIN, SUM, AVG. 24. GROUP BY Example - ANSWER SELECT Country, COUNT(CustomerID) AS CustCount FROM Customer GROUP BY Country 25. True or False The CREATE TABLE SQL statement defines a new table and its columns. - ANSWER True 26. True or False In SQL, the UPDATE statement modifies data in an existing row (or rows) - ANSWER True 27. DROP TABLE Statement - ANSWER Allows you to remove tables from the database 28. DELETE FROM tablename WHERE condition - ANSWER Allows you to remove certain rows from a table 29. DELETE FROM tablename - ANSWER Deletes all rows from a given table 30. True or False A relational database management system (DBMS) is a software package that manages the connection between the database and the schema - ANSWER False

Show more Read less
Institution
ISM 4212
Course
ISM 4212











Whoops! We can’t load your doc right now. Try again or contact support.

Written for

Institution
ISM 4212
Course
ISM 4212

Document information

Uploaded on
November 30, 2025
Number of pages
42
Written in
2025/2026
Type
Exam (elaborations)
Contains
Questions & answers

Subjects

Content preview

ISM 4212 EXAM 2 STUDY GUIDE 2026
COMPLETE QUESTIONS WITH CORRECT
DETAILED ANSWERS ||
100% GUARANTEED PASS
<RECENT VERSION>


1. What are the different types of SQL? - ANSWER ✔ Data definition, data
manipulation, and data control.


2. What does DDL do and what does it stand for? - ANSWER ✔ Data
definition language.
They are commands that define (create) and establish constraints.


3. What does DML do and what does it stand for? - ANSWER ✔ Data
manipulation language. Includes commands that maintain and query a
database.


4. What does DCL do and what does it stand for? - ANSWER ✔ Data control
language.
5. They are commands that administer privileges and execute data.


6. What is referential integrity? - ANSWER ✔ A constraint that states that
foreign key values of a table must match primary key values of the related
table.


7. Give the basic form for making a table in SQL. - ANSWER ✔ CREATE
TABLE tblname (columnname1 datatype not null primary key,.....)

,8. How do you add a FK to a table? - ANSWER ✔ ALTER TABLE tblname
ADD FOREIGN KEY (blankid) references tblname2(blankid)


9. How do you insert a full row of data into a table? - ANSWER ✔ INSERT
INTO tblname VALUES (1, 'Dodgers', '01/02/1980')


10.How do you insert a partial row of data? - ANSWER ✔ INSERT INTO
tblname (columnname1, comulmnname2) VALUES ('no',1)


11.How do you delete a whole table from a DB? - ANSWER ✔ DROP TABLE
tblname


12.How do you delete all rows from a table? - ANSWER ✔ DELETE FROM
tblname


13.Database Management System - ANSWER ✔ Software that handles the
storage, retrieval, and updating of data in a computer system


14.Data Definition Language (DDL) - ANSWER ✔ Commands that define a
database, including creating, altering, and dropping tables and establishing
constraints.


15.Data Manipulation Language (DML) - ANSWER ✔ Commands that
maintain and query a database


16.Data Control Language (DCL) - ANSWER ✔ Commands that control a
database, including administering privileges and committing data

,17.DDL - ANSWER ✔ CREATE tables, indexes, and views
Establish foreign keys
Drop or truncate tables


18.DML - ANSWER ✔ INSERT data
UPDATE the database
Manipulate the database: SELECT


19.DCL - ANSWER ✔ GRANT, ADD, REVOKE


20.Char(n) - ANSWER ✔ Stores string/text characters; fixed length
Example: Char(2)


21.Varchar(n) - ANSWER ✔ Stores string/text characters; variable length
Example: Varchar(255)


22.What is the purpose of the GROUP BY statement in SQL? - ANSWER ✔
To group the results by one or more columns.


23.Which SQL functions are commonly used with the GROUP BY statement? -
ANSWER ✔ COUNT, MAX, MIN, SUM, AVG.


24.GROUP BY Example - ANSWER ✔ SELECT Country,
COUNT(CustomerID) AS CustCount

, FROM Customer
GROUP BY Country


25.True or False
The CREATE TABLE SQL statement defines a new table and its columns. -
ANSWER ✔ True


26.True or False
In SQL, the UPDATE statement modifies data in an existing row (or rows) -
ANSWER ✔ True


27.DROP TABLE Statement - ANSWER ✔ Allows you to remove tables from
the database


28.DELETE FROM tablename WHERE condition - ANSWER ✔ Allows you
to remove certain rows from a table


29.DELETE FROM tablename - ANSWER ✔ Deletes all rows from a given
table


30.True or False
A relational database management system (DBMS) is a software package that
manages the connection between the database and the schema - ANSWER ✔
False


31.True or False

Get to know the seller

Seller avatar
Reputation scores are based on the amount of documents a seller has sold for a fee and the reviews they have received for those documents. There are three levels: Bronze, Silver and Gold. The better the reputation, the more your can rely on the quality of the sellers work.
ProfBenjamin Havard School
View profile
Follow You need to be logged in order to follow users or courses
Sold
389
Member since
1 year
Number of followers
13
Documents
2785
Last sold
3 days ago
EXCELLENT ACHIEVERS LIBRARY

As a professional tutor, I provide exceptional assistance with homework, quizzes, and exams across various subjects, including Psychology, Nursing, Biological Sciences, Business, Engineering, Human Resource Management, and Mathematics. I am dedicated to offering high-quality support and ensuring that all work meets scholarly standards. To enhance the effectiveness of our services, I work with a team of experienced tutors to create comprehensive and effective revision materials. Together, we are committed to helping students achieve excellent grades through our collaborative efforts and expertise.

Read more Read less
3.9

71 reviews

5
31
4
11
3
21
2
4
1
4

Recently viewed by you

Why students choose Stuvia

Created by fellow students, verified by reviews

Quality you can trust: written by students who passed their tests and reviewed by others who've used these notes.

Didn't get what you expected? Choose another document

No worries! You can instantly pick a different document that better fits what you're looking for.

Pay as you like, start learning right away

No subscription, no commitments. Pay the way you're used to via credit card and download your PDF document instantly.

Student with book image

“Bought, downloaded, and aced it. It really can be that simple.”

Alisha Student

Frequently asked questions