CourseInsights / test / resources / queries / valid / simpleANDAdj.json
simpleANDAdj.json
Raw
{
	"title": "simpleANDAdj",
	"input": {
		"WHERE": {
			"AND": [
				{
					"IS": {
						"sections_dept": "nurs"
					}
				},
				{
					"EQ": {
						"sections_avg": 94
					}
				}
			]
		},
		"OPTIONS": {
			"COLUMNS": [
				"sections_dept",
				"sections_id",
				"sections_avg"
			],
			"ORDER": "sections_avg"
		}
	},
	"errorExpected": false,
	"orderExpected": true,
	"orderBy": "sections_avg",
	"expected": [
		{
			"sections_dept": "nurs",
			"sections_id": "595",
			"sections_avg": 94
		},
		{
			"sections_dept": "nurs",
			"sections_id": "510",
			"sections_avg": 94
		},
		{
			"sections_dept": "nurs",
			"sections_id": "510",
			"sections_avg": 94
		},
		{
			"sections_dept": "nurs",
			"sections_id": "423",
			"sections_avg": 94
		},
		{
			"sections_dept": "nurs",
			"sections_id": "423",
			"sections_avg": 94
		}
	]
}