### Basic JQL Query Structure Example Source: https://www.atlassian.com/software/jira/guides/jql/cheat-sheet Illustrates the fundamental components of a JQL query: field, operator, value, and keywords. ```jql project = "Marketing Campaign" AND status = "In Progress" ``` -------------------------------- ### JQL Example: High-Priority Issues Assigned to You Source: https://www.atlassian.com/software/jira/guides/jql/cheat-sheet Finds all issues that are marked as high priority and assigned to the current user. ```jql priority = High AND assignee = currentUser() ``` -------------------------------- ### JQL Example: Recently Created Issues Source: https://www.atlassian.com/software/jira/guides/jql/cheat-sheet Shows issues created within the last 7 days, sorted by creation date. ```jql created >= -7d ORDER BY created DES ``` -------------------------------- ### JQL Example: Overdue Issues in a Project Source: https://www.atlassian.com/software/jira/guides/jql/cheat-sheet Lists issues in a specific project that are past their due date and not yet closed. ```jql project = "Customer Support" AND duedate < now() AND status != Closed ``` -------------------------------- ### JQL ORDER BY Function Source: https://www.atlassian.com/software/jira/guides/jql/cheat-sheet Sorts issues within a project by their creation date in descending order. ```jql project = "Marketing" ORDER BY created DESC ``` -------------------------------- ### JQL AND Operator Source: https://www.atlassian.com/software/jira/guides/jql/cheat-sheet Combines two conditions using the AND operator to find high-priority issues in an open status. ```jql priority = High AND status = Open ``` -------------------------------- ### JQL Exact Match Operator Source: https://www.atlassian.com/software/jira/guides/jql/cheat-sheet Uses the equals operator to find issues within a specific project. ```jql Project = "Marketing Campaign" ``` -------------------------------- ### Filter by Specific Issue Types and Statuses in JQL Source: https://www.atlassian.com/software/jira/guides/jql/cheat-sheet Target particular issue types and their statuses using JQL to track and manage specific categories of work within your projects. ```jql issuetype = Epic AND status != Done ```