using join operations.
for Eg: if you have to join two tables company table and location table using a primary key CompanyID in company table and foreign key CompanyID in location table then we can do this using equi-join as below:
SELECT *
FROM company c, location l
WHERE c.CompanyID = l.CompanyID
--->> the above query select all the companies with a location.
Note: Google out for for type of joins
hIERARCHIAL
DATABASE
In database the data is stored in tables called database tables. These tables have rows and columns. Each row is called a tuple.
Database is the collection of data which are interrelated with each other. Data in database is stored in form of table these tables are known as database tables.
Database comprises of records that are related to each other. In database the data is stored in the form of tables, are called database tables .
Tables are the basic building blocks of a relational database.
A relational database is a database that contains tables linked by common fields. These common fields are used to establish connections between the tables and to retrieve related data across multiple tables using queries.
Relational Database
they are the names
A database can be created by first creating a schema then creating tables. The tables are linked to each other.
Populating a database generally means adding information (data) to a database, thus filling in any pregenerated information needed. It could also mean adding the fields to a database in order to be able to fill it with information. The final common use of that term is to connect a database to a front end application in order to use the information stored in that database.
A database contains forms and reports stored in tables