QuestionQ117

Load and leverage structured, semi-structured, and unstructured data

Consider this SQL command:

SELECT -  
weather:station.element  
  
FROM -  
weather_data;  

What is the name of the column from which data is selected?

Explanation

The column identifier is element; weather and station qualify or provide context for that column reference, and weather_data is the source table.

Community Discussion

No comments yet. Be the first to start the discussion!