Category Archives: sql Certificate

Khóa học miễn phí SQL – The SQL SELECT Statement nhận dự án làm có lương

SQL – The SQL SELECT Statement Questions 1. Identify the capabilities of SELECT statement. Projection Selection Data Control Transaction Answer: A, B. The SELECT statement can be used for selection, projection and joining. 2. Determine the capability of the SELECT statement demonstrated in the given query. SELECT e.ename, d.dname FROM emp e, dept d WHERE […]

Khóa học miễn phí SQL – Creating Other Schema Objects nhận dự án làm có lương

SQL – Creating Other Schema Objects Apart from tables, other essential schema objects are view, sequences,indexes and synonyms.A view is a logical or virtual table. Synonyms are simply alias names for database objects.Synonyms also simplify query writing and provide an element of system security by disguising the actual name of a database object.Sequences are special […]

Khóa học miễn phí SQL – Using Single-Row Functions nhận dự án làm có lương

SQL – Using Single-Row Functions Using Single row functions to customize output Oracle SQL supplies a rich library of in-built functions which can be employed for various tasks. The essential capabilities of a functions can be the case conversion of strings, in-string or substring operations, mathematical computations on numeric data, and date operations on date […]