Add office photos
Employer?
Claim Account for FREE

eClinicalWorks

3.9
based on 841 Reviews
Video summary
Filter interviews by

Blueberry Travel Interview Questions and Answers

Updated 13 Mar 2024
Popular Designations

Q1. What is DBMS, What type of DBMS you know?

Ans.

DBMS stands for Database Management System. It is a software that manages databases and allows users to interact with them.

  • DBMS is a software system that allows users to create, retrieve, update, and manage data in a database.

  • There are different types of DBMS, such as relational DBMS (RDBMS), object-oriented DBMS (OODBMS), and NoSQL DBMS.

  • Examples of popular DBMS include MySQL, Oracle Database, Microsoft SQL Server, and MongoDB.

Add your answer

Q2. How to get a count of records in the table?

Ans.

Use SQL query with COUNT function to get the count of records in the table.

  • Use the SQL query: SELECT COUNT(*) FROM table_name;

  • Replace 'table_name' with the actual name of the table you want to count records from.

  • The COUNT function returns the number of rows that match the specified criteria.

Add your answer

Q3. How do you add record to the table?

Ans.

To add a record to a table, you can use SQL INSERT statement.

  • Use the INSERT INTO statement followed by the table name

  • Specify the column names and values to be inserted

  • Example: INSERT INTO employees (id, name, salary) VALUES (1, 'John Doe', 50000)

Add your answer

Q4. What is Joins in SQL?

Ans.

Joins in SQL are used to combine rows from two or more tables based on a related column between them.

  • Joins are used to retrieve data from multiple tables based on a related column.

  • Common types of joins include INNER JOIN, LEFT JOIN, RIGHT JOIN, and FULL JOIN.

  • Example: SELECT * FROM table1 INNER JOIN table2 ON table1.column = table2.column;

Add your answer
Discover Blueberry Travel interview dos and don'ts from real experiences

Q5. How to Update a table?

Ans.

To update a table, use SQL UPDATE statement with specified column values and conditions.

  • Use SQL UPDATE statement to specify the table name and set the new values for columns

  • Add a WHERE clause to specify the conditions for which rows to update

  • Example: UPDATE table_name SET column1 = value1, column2 = value2 WHERE condition;

Add your answer

Q6. Difference between truncate and delete

Ans.

Truncate is a DDL operation that removes all rows from a table, while delete is a DML operation that removes specific rows.

  • Truncate is faster than delete as it doesn't generate any undo logs or triggers.

  • Truncate cannot be rolled back, while delete can be rolled back using the transaction log.

  • Truncate resets the identity of the table, while delete doesn't.

  • Truncate doesn't fire delete triggers, while delete does.

  • Truncate is non-logged operation, while delete is logged operation...read more

View 1 answer

Q7. use of constraints, DDL commands

Ans.

Constraints and DDL commands are essential for defining and managing database structures.

  • Constraints ensure data integrity and consistency.

  • DDL commands are used to create, modify, and delete database objects.

  • Examples of constraints include primary keys, foreign keys, and check constraints.

  • Examples of DDL commands include CREATE TABLE, ALTER TABLE, and DROP TABLE.

Add your answer

Q8. Type of joins

Ans.

Joins are used to combine data from two or more tables based on a related column between them.

  • Types of joins include inner join, left join, right join, and full outer join.

  • Inner join returns only the matching rows from both tables.

  • Left join returns all the rows from the left table and matching rows from the right table.

  • Right join returns all the rows from the right table and matching rows from the left table.

  • Full outer join returns all the rows from both tables, with NULL val...read more

Add your answer

More about working at eClinicalWorks

HQ - Westborough, Massachusetts, United States (USA)
Contribute & help others!
Write a review
Share interview
Contribute salary
Add office photos

Interview Process at Blueberry Travel

based on 6 interviews
2 Interview rounds
Technical Round
HR Round
View more
Interview Tips & Stories
Ace your next interview with expert advice and inspiring stories
Share an Interview
Stay ahead in your career. Get AmbitionBox app
qr-code
Helping over 1 Crore job seekers every month in choosing their right fit company
70 Lakh+

Reviews

5 Lakh+

Interviews

4 Crore+

Salaries

1 Cr+

Users/Month

Contribute to help millions

Made with ❤️ in India. Trademarks belong to their respective owners. All rights reserved © 2024 Info Edge (India) Ltd.

Follow us
  • Youtube
  • Instagram
  • LinkedIn
  • Facebook
  • Twitter