(a) Create a table Weather with the following structure using SQL | Name of Column | Type | | :--- | :--- | | City | Character(15) | | Temperature | Number(2) | | Humidity | Number(2) | | Condition | Character(20) | | Country | Character(20) | Create Queries for the following requirements : ..... 10

Explanation

The SQL query creates a table named Weather with five columns: City, Temperature, Humidity, Condition, and Country. Each column has a specific data type, such as CHARACTER(15) for the City column and NUMBER(2) for the Temperature column.


โฌ† Related Topic

View Topic Hub โ†’

๐Ÿ“˜ Syllabus

View KERALA UNIVERSITY Class 5 Syllabus โ†’

๐Ÿ“ Practice Questions

Practice Previous Year Questions โ†’

๐Ÿค– Practice with AI

Generate Practice Question Paper โ†’


๐Ÿ“š Related Concepts