This section is not intended to be a course of the SQL language. Therefore, the focus will be put on the minimal set of differences that you must know in order to write queries properly.
...
Expand | ||||||||||
---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||
will work. Whereas
will not. |
KEY is a reserved word
As other database vendors, SQL Cloud does have reserved words that must be surrounded with accents or square brackets
...
Expand | |||||
---|---|---|---|---|---|
| |||||
This can cause series reliability problems and compromise the Jira server instance performance. A clear example is:
What if there are millions of records/issues? Therefore many queries performing full scans on tables are aborted by the SQL Cloud engine by raising a Full Scan error: Since SQL Cloud is a wrapper for the Atlassian’s Jira public REST API, it relies on the underlaying Atlassian’s API for that. In other words, if the Jira REST API allows querying for all the results (i.e.: PROJECTs), then SQL Cloud will allow it too. Otherwise (i.e.: ISSUEs) not. In this case the indexed column names are displayed (JQL and ID in the example above). An indexed column in SQL Cloud corresponds to a filter parameter required by the Atlassian’s Jira public REST API to fetch data from Jira. For instance, you can search for issues in Jira by ID or by JQL query. In general, the SQL Cloud is an straightforward implementation of the Jira REST API and inherits the same security and the rest of the constraints. |
...
Expand | |||||||
---|---|---|---|---|---|---|---|
| |||||||
Please pay attention to the having condition: count(*) > 2
Works! In this query the condition has been modified to uses column aliases: `Num. comments` > 2
Not works! |