📚 Practice Mode
ABAP and SAS Programming Quiz
Learn at your own pace with hints and detailed explanations
1 / 20
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)