crackyourinterview.com


To improves our performance please Like Share Subscribe(Will boost us)

What is INFORMATION_SCHEMA Database and why use this?
Question Posted on 10 Jul 2021Home >> DataBase >> sql questions >> What is INFORMATION_SCHEMA Database and why use this?

What is INFORMATION_SCHEMA Database and why use this?
Before going to anything we will first discuss the definition of INFORMATION_SCHEMA Database.
First Definition
(1)"This is the database about databases"
Second Definition
(2)In RDBMS information_schema is an ANSI_standard set of read only views that will provide information about tables, views, columns and procedures in database.

we can use information_schema to get information about all the tables of particular database. Below is the example to get complete information about database.


use database_name

select * from INFORMATION_SCHEMA.TABLES;

Select * from INFORMATION_SCHEMA.TABLE_CONSTRAINTS;


As we have use the use keyword with database name the query only will be fire on the given database. Above query we will get all the information about the different tables and in second table we will get all constraint with table name.


information_schema
0
0



.


Most Visited Questions:-

Deep Learning Questions Answers
Below are the different Deep Leaning Questions and answer a More...

Continuous Integration Questions Answers
Below are the 20 odd questions for CI or Continuous Integra More...

Derived relationships in Association Rule Mining are represented in the form of __________.
Derived relationships in Association Rule Mining are repres More...

What is Gulpjs and some multiple choice questions on Gulp
Gulpjs is an open source whihc helps in building Javascript More...

Microservices Architecture Questions Answers
Below are the different questions on Microservices Architec More...




Other Important Questions

Define N in nvarchar and in nchar?

difference between drop and truncate command

difference between procedure and function

different types of databases in sql

Difference Between Update Lock and Exclusive Lock






@2014-2022 Crackyourinterview (All rights reserved)
Privacy Policy - Disclaimer - Sitemap