CourseInsights / test / resources / queries / valid / notEverythingIsNothing.json
notEverythingIsNothing.json
Raw
{
	"title": "Not everything is nothing",
	"input": {
		"WHERE": {
			"NOT": {
				"NOT": {
					"OR": [
						{
							"AND": [
								{
									"GT": {
										"sections_avg": 90
									}
								},
								{
									"NOT": {
										"GT": {
											"sections_avg": 90
										}
									}
								}
							]
						},
						{
							"AND": [
								{
									"NOT": {
										"IS": {
											"sections_dept": "adhe"
										}
									}
								},
								{
									"IS": {
										"sections_dept": "adhe"
									}
								}
							]
						}
					]
				}
			}
		},
		"OPTIONS": {
			"COLUMNS": [
				"sections_dept",
				"sections_id",
				"sections_avg"
			],
			"ORDER": "sections_avg"
		}
	},
	"errorExpected": false,
	"orderExpected": true,
	"orderBy": "sections_avg",
	"expected": []
}