Multidomain MDM
- Multidomain MDM 10.5 HotFix 3
- All Products
SQL
| Restriction
|
---|---|
Statements
| A custom query must be a SELECT statement. Other SQL statements are not supported.
|
Column Names
| Column names can contain alphanumeric characters and underscores. Spaces and other special characters are not supported.
|
Aliases
| Alias names can contain alphanumeric characters and special characters. Spaces are not supported.
|
Constant Columns
| To add a constant column, which is enclosed in single quotes, you must use an alias.
For example, the following query uses the alias
const_alias :
SELECT ID,'CONST_COL' AS const_alias FROM c_party
|
Aggregate Functions
| To add an aggregate function with a special character, you must use an alias.
For example, the following query uses the alias
new_rowid :
SELECT rowid_object*0 AS new_rowid FROM c_party
|