Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Table of Contents
minLevel3
maxLevel6
include
outlinefalse
indent
exclude
typelist
printablefalse
class

TeamForm 2024-1.pngImage Modified

The primary keys are either:

...

Code Block
languagesql
SELECT allocationprojectname, forecastfte
FROM forecast
WHERE
    targetteamname = 'ABC App'
    andAND sourceteamname = 'DB Solutioning'
ORDER BY allocationprojectname

...

Example 1: Find all the company objectives.

Code Block
languagesql
selectSELECT *
fromFROM objectives
whereWHERE objective_type = 'company-objective'

Example 2: Find all the objectives with the parent of '1S3Q0WN2'

Code Block
languagesql
selectSELECT *
fromFROM objectives
whereWHERE contains(parent_objective_ids,'1S3Q0WN2')

...

Example 1: Find all the objectives linked to team Alpha.

Code Block
languagesql
selectSELECT objective_id, objective_name
fromFROM team_objectives
whereWHERE team_name = 'Alpha' 

planning

...

Code Block
languagesql
SELECT *
FROM projects
WHERE     project_planner = true

people

...

Code Block
languagesql
SELECT team_name, team_id
FROM tag_teams
WHERE team_type = 'Agile Team' 
    AND tag_type = 'Interaction'

...

Code Block
languagesql
SELECT person_id, person_first_name, person_surname
FROM tag_people 
WHERE tag_type = 'SPECIALIST_ROLE' 
    AND tag_value = 'Scrum Master'

...

Code Block
languagesql
SELECT left_id, left_name, association_tag_type, right_id, right_name
FROM associations
WHERE association_tag_type = 'RISK' 
    AND association_tag_value = 'financial risk'

...