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

SQL · Theory

Features

← All stacks

Theory

2/439

Features

MySQL features you should actually name in a viva, not a marketing list: it is a relational database (tables + keys), it is free/open source for learning, it runs on Windows, Linux, and Mac, and InnoDB gives transactions (commit / rollback).

It talks over a network. Your PHP, Java, or Node app connects with a host, user, password, and database name. Many websites use this. That is the ‘client-server’ feature — the app is the client, mysqld is the server.

Useful extras: indexes to find a roll number fast, users and GRANT so a intern cannot DROP the whole college DB, and backups with mysqldump. InnoDB is the default engine for real tables. MyISAM is older and does not do proper transactions — don’t pick it for fees.

Trap: reciting twenty feature names with no example. Pick four: tables, SQL, InnoDB transactions, used by web apps. If they ask ‘open source’, say you can install it without buying a licence for practice.

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

Exam tip

Four features: tables, SQL, InnoDB transactions, web apps connect as clients.

Features — sample query

-- Features
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;

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

Short notes

  • DefRelational DB — tables, SQL, client-server.
  • RuleName InnoDB + transactions, not a 20-point list.
  • RememberApp connects with host / user / password / database.
  • UseCollege portal, shop, any login system.
  • TrapFeature dump with no SELECT example.

Questions

1

Name four MySQL features.

2

Why InnoDB?

2 / 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.