CourseInsights / test / resources / queries / valid / andNonEmpty.json
andNonEmpty.json
Raw
{
	"title": "andNonEmpty",
	"input": {
		"WHERE": {
			"AND": [
				{
					"IS": {
						"sections_dept": "cpsc"
					}
				},
				{
					"EQ": {
						"sections_avg": 95
					}
				}
			]
		},
		"OPTIONS": {
			"COLUMNS": [
				"sections_dept",
				"sections_avg"
			],
			"ORDER": "sections_dept"
		}
	},
	"errorExpected": false,
	"orderExpected": true,
	"orderBy": "sections_dept",
	"expected": [
		{
			"sections_dept": "cpsc",
			"sections_avg": 95
		},
		{
			"sections_dept": "cpsc",
			"sections_avg": 95
		}
	]
}