Skip to content

SPECIFIC

CREATE TABLE Employee (
ID int,
Name varchar(255),
Age int,
Address varchar(255),
Salary decimal(10, 2),
SPECIFIC (ID)
);
Table EMPLOYEE created.

In the provided SQL script, a new table named ‘Employee’ is created with five columns: ID, Name, Age, Address and Salary. The SPECIFIC keyword is used to create a unique identification for an SQL-invoked routine. However, in Oracle SQL, there is no SPECIFIC keyword, thus the script may return an error. The SPECIFIC keyword is mostly used in SQL procedures and functions.

Note: Oracle SQL does not support the SPECIFIC keyword. This example shows the common usage of SPECIFIC in SQL and not specific to Oracle.