SQL Studio


Geneal

SQL Studio parses the sql entered and translates it into MSCRM api commands. A simplified form of sql and some functions are supported. The function signatures are modeled after SQL Server.

The following criteria is supported

  • =
  • !=
  • >
  • >=
  • <
  • <=
  • like
  • not like
  • in
  • not in
Commands for API exection
Commands for Variables
Commands for flow control
Other Commands
General Functions
  • ISNULL (value, value)
  • TYPEOF (value)
  • NEWID ()
String Functions
  • LEN (string)
  • REVERSE (string)
  • SUBSTRING (string, start, length)
  • TRIM (string)
  • LOWER (string)
  • UPPER (string)
  • LEFT (string, length)
  • RIGHT (string, length)
  • FORMAT (string, format)
Date Functions
  • GETDATE ()
  • GETUTCDATE ()
  • DATEADD (datepart, length, datetime)
  • DATEPART (datepart, datetime)
  • YEAR (datetime)
  • MONTH (datetime)
  • DAY (datetime)
Math Functions
  • ABS ( number )
  • CEILING ( number )
  • EXP ( number )
  • FLOOR ( number )
  • LOG ( number )
  • POWER ( number, power )
  • ROUND ( number, decimals )
  • SQRT (number)