CourseInsights / test / resources / queries / valid / avgmoreThan97AndStartsWithC.json
avgmoreThan97AndStartsWithC.json
Raw
{
	"title": "avgmore than 97 and starts with c",
	"input": {
		"WHERE": {
			"AND": [
				{
					"GT": {
						"sections_avg": 97
					}
				},
				{
					"IS": {
						"sections_dept": "c*"
					}
				}
			]
		},
		"OPTIONS": {
			"COLUMNS": [
				"sections_dept",
				"sections_avg"
			],
			"ORDER": "sections_avg"
		}
	},
	"errorExpected": false,
	"orderExpected": true,
	"orderBy": "sections_avg",
	"expected": [
		{
			"sections_dept": "cnps",
			"sections_avg": 97.47
		},
		{
			"sections_dept": "cnps",
			"sections_avg": 97.47
		},
		{
			"sections_dept": "crwr",
			"sections_avg": 98
		},
		{
			"sections_dept": "crwr",
			"sections_avg": 98
		},
		{
			"sections_dept": "cnps",
			"sections_avg": 99.19
		}
	]
}