database

SQL Interview Questions

SQL

SQL is the standard language for dealing with Relational Databases. SQL can be used to insert, search, update, and delete database records. SQL can do lots of other operations, including optimizing and maintenance of databases. This post will help you to…

Microsoft SQL for Beginners Views Query

Microsoft SQL for Beginners Views Query

1. Create a view named ‘building_details’ to display all the details of building. 2. Create a view named ‘building_owners’ to display all the owners of the building. 3. Create a view named ‘owner_details’ to display the owner name and contact number of the buildings having length of the owner name greater than 15. 4.…

DML MySQL Basic Select – Query Writing

DML MySQL Basic Select - Query Writing

1. Write a query to display the entire contents of the ‘electricity_connection_type’.Display the records in ascending order based on their connection name. select * from electricity_connection_type order by connection_name 2. Write a query to display the entire contents of the…