Back to Interview Hub

MySQL Questions

Relational database, complex joins, query optimization, and transactions.

Showing 1-6 of 87 questions

1 / 15
1QuestionsHard🔥 90% Asked

Box vs Rc vs Arc?

Asked in:MetaMicrosoftCisco

Box owns heap data. Rc is single-thread reference counting. Arc is atomic thread-safe reference counting.

Page 10

2QuestionsEasy🔥 51% Asked

What is MySQL?

Asked in:AirbnbLinkedInTwitter

MySQL is a relational database that stores structured data in tables and uses SQL for queries.

3QuestionsEasy🔥 60% Asked

Primary key vs foreign key?

Asked in:SwiggyGoogleAccenture

Primary key uniquely identifies row. Foreign key links row to primary key in another table and maintains relationship integrity.

4QuestionsMedium🔥 81% Asked

INNER JOIN vs LEFT JOIN?

Asked in:IBMAccentureWiproInfosys

INNER JOIN returns matching rows from both tables. LEFT JOIN returns all left table rows and matched right table rows, otherwise

NULL.

5QuestionsMedium🔥 61% Asked

What is index?

Asked in:NetflixIBMAmazonPaytm

Index speeds up reads by creating searchable structure, but slows writes and uses storage.

6QuestionsMedium🔥 71% Asked

Normalization?

Asked in:IBMWiproAccentureUber

Organizing data to reduce duplication and improve integrity using related tables.