Ex: ```SELECT BUILTIN.DF( CreatedBy ) AS CreatedB...
# general
t
Ex:
Copy code
SELECT
	BUILTIN.DF( CreatedBy ) AS CreatedBy,
	COUNT(*) AS TranCount
FROM 
	Transaction
WHERE
	Type = 'SalesOrd'
GROUP BY
	BUILTIN.DF( CreatedBy )
ORDER BY
	CreatedBy