Tech & Coding

SQL & Database Interview Questions for Freshers

Q1. What is a Database?

A structured collection of data.

SQL & Database Interview Questions for Freshers

Q2. What is SQL?

Language used to manage databases.


Q3. What is Primary Key?

Uniquely identifies records in a table.


Q4. SELECT Query Example

SELECT * FROM students;

Q5. Difference Between DELETE and TRUNCATE

  • DELETE → Removes selected rows
  • TRUNCATE → Removes all rows

Leave a Reply

Your email address will not be published. Required fields are marked *