ABAP and SAS Programming Quiz
Casual Mode - Take your time!
1 / 20
Correct
0
Incorrect
0
Score
0%
Multiple Choice
select flightnumber, date, destination, boarded + transferred + nonrevenue as Total from marchflights where total < 100; What will happen when this query is submitted ?
- Error: as mathematical computation is not allowed while using proc sql.
- ERROR: The following columns were not found in the contributing tables: total.
- Warning : the type of the variable total is not declared(character or numeric).But due to automatic conversion, some unexpected value is being populated in variable total.
- Error: variable total nor recognized(because there are two spelling - Total and total)