A DBMS is responsible for:
There are 3 traditional types of database management systems: hierarchical, relational, and network. Current popular database systems include Oracle; Sybase (same as Microsoft's SQL Server but on a different platform); IBM's DB2, IMS, and SQL/DS; Ingres; Informix; and smaller, but reasonably powerful off-the-shelf products such as dBase, Access, Foxpro, Paradox, and dozens of others.
The choice of a database product is often influenced by factors such as:
Object-oriented database systems are currently in development. They allow us to model and manipulate complex data structures and objects, and hence support many new applications, including CAD/CAM. As of 1996, object-oriented databases represent a very small segment of the commercial market (perhaps 1%). It is interesting to note that some major DBMS vendors are starting to support complex objects (such as images) in their relational products.
SELECT field name(s)
FROM database's table name(s)
WHERE conditional clause
For example, to find all professors earning more than $75,000,
a suitable query might be:
SELECT name, salary
FROM payroll
WHERE job = 'Professor' and salary > 75000