TABLE_OBJECT_ID_UDF (VARCHAR)

Definition

This user-defined function (UDF) checks if a table with a specific name has been created before.

TABLE_OBJECT_ID_UDF(NAME VARCHAR) 

Parameters

NAME VARCHAR

The table name to be evaluated.

Returns

Returns a boolean expression depending on the existence of the table.

Usage example

Input:

SELECT TABLE_OBJECT_ID_UDF('Test');

Output:

FALSE

Last updated