Advertisements
Advertisements
Question
A shop called Wonderful Garments which sells school uniforms maintains a database SCHOOLUNIFORM as shown below. It consisted of two relations - UNIFORM and COST. They made UniformCode the primary key for UNIFORM relations. Further, they used UniformCode and Size to be composite keys for COSTrelation. By analyzing the database schema and database state, specify SQL query to rectify the following anomaly.
M/S Wonderful Garments also keeps handkerchiefs of red colour, medium size of Rs. 100 each.
One Line Answer
Solution
INSERT INTO UNIFORM (UCode, UName, Color) VALUES(7, 'HANDKERCHIEF', 'RED'); This query will insert a new row in the UNIFORM table for Red HANDKERCHIEF.
shaalaa.com
Performing Insert, Update, Delete Queries Using Cursor
Is there an error in this question or solution?