How do you find the maximum value in a column ?
Use SELECT MAX(… Read more »
Use SELECT MAX(… Read more »
Bulit-in mathematical functions for use in SELECT clause. Read more »
Specify the indexed columns in the WHERE clause. Read more »
Use SELECT DISTINCT … Read more »
Use SELECT COUNT(*) … Read more »
A primary key is a key that is unique, non-null, and is part of the definition of a table. A table must have a primary key to be defined as a parent. Read more »
Referential integrity refers to a feature in DB2 that is used to ensure consistency of the data in the database. Read more »
An object is anything that is managed by DB2 (that is databases, table spaces, tables, views, indexes or synonyms), but not the data itself. Read more »
An object is anything that is managed by DB2 (that is databases, table spaces, tables, views, indexes or synonyms), but not the data itself. Read more »
This is a special value that indicates the absence of data in a column. This value is indicated by a negative value, usually -1. Read more »
Locking is a process that is used to ensure data integrity. It also prevents concurrent users from accessing inconsistent data. The data (row) is locked until a... Read more »
Locking is a process that is used to ensure data integrity. It also prevents concurrent users from accessing inconsistent data. The data (row) is locked until a... Read more »
Grant privileges means giving access/authority to DB2 users. Read more »
Entity integrity is when the primary key is in fact unique and not null. Read more »
They are SQL statements that are embedded with in application program and are prepared during the program preparation process before the program is executed. After... Read more »