PGoCareerGoCareer prep tools
LoginSign up
  • Java
  • Python
  • AI
  • React
  • Angular
  • PHP
  • Node.js
  • SQL
  • DSA
  • HTML
  • CSS
  • JS
  • Spring
  • ML
  • MongoDB

SQL · Theory

DBMS

← All stacks

Theory

376/439

DBMS

DBMS is the software that manages databases — MySQL Server is a DBMS. A database is the data (college). The DBMS stores it, locks it, backs it up, and runs SQL.

RDBMS is a DBMS that uses relational tables (rows/columns/keys). MySQL is an RDBMS. MongoDB is a DBMS that is document-based, not relational.

Trap: ‘MySQL is a database’ vs ‘MySQL is a DBMS’. Casual speech says both. Viva: DBMS = software, database = the stored data.

On the example next to this theory: DBMS: create two demo rows, then SELECT qty >= 2 ordered. Say which labels come back.

Exam tip

MySQL Server = RDBMS. college = a database inside it.

DBMS — sample query

-- DBMS
CREATE TABLE demo (
  id INTEGER PRIMARY KEY,
  label TEXT NOT NULL,
  qty INTEGER DEFAULT 0
);
INSERT INTO demo (id, label, qty) VALUES
  (1, 'alpha', 2),
  (2, 'beta', 5);
SELECT label, qty FROM demo WHERE qty >= 2 ORDER BY qty DESC;

DBMS: create two demo rows, then SELECT qty >= 2 ordered. Say which labels come back.

Short notes

  • DefDBMS = software. Database = the data. MySQL is an RDBMS.
  • RuleRDBMS = tables + keys + SQL.
  • TrapMixing DBMS and ‘a database’ in a strict viva.

Questions

1

DBMS vs database?

376 / 439

P

GoCareerGo

Utilities · Preparation Hub · Resume · CV · Tools — one workspace.

Workspace

DashboardProfilePreparation HubResume builderCV builderCareer planning

PDF Tools

Merge PDFSplit PDFCompress PDFImage to PDFAll toolsJobs

Image & QR

Compress ImageResize ImageQR ScannerQR GeneratorBlogIT interview prep

Company

FAQFeedbackContactPrivacyTermsSitemap

© 2026 GoCareerGo. Keep moving forward.