0% found this document useful (0 votes)
40 views1 page

Nobel Win

Uploaded by

kravishind
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
40 views1 page

Nobel Win

Uploaded by

kravishind
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 1

CREATE TABLE nobel_win (

YEAR NUMBER,
SUBJECT VARCHAR2(10),
WINNER VARCHAR2(23),
COUNTRY VARCHAR2(7),
CATEGORY VARCHAR2(15)
);
INSERT INTO nobel_win VALUES (1970, 'Physics', 'Hannes Alfven', 'Sweden',
'Scientist');
INSERT INTO nobel_win VALUES (1970, 'Physics', 'Louis Neel', 'France',
'Scientist');
INSERT INTO nobel_win VALUES (1970, 'Chemistry', 'Luis Federico Leloir', 'France',
'Scientist');
INSERT INTO nobel_win VALUES (1970, 'Physiology', 'Ulf von Euler', 'Sweden',
'Scientist');
INSERT INTO nobel_win VALUES (1970, 'Physiology', 'Bernard Katz', 'Germany',
'Scientist');
INSERT INTO nobel_win VALUES (1970, 'Literature', 'Aleksandr Solzhenitsyn',
'Russia', 'Linguist');
INSERT INTO nobel_win VALUES (1970, 'Economics', 'Paul Samuelson', 'USA',
'Economist');
INSERT INTO nobel_win VALUES (1970, 'Physiology', 'Julius Axelrod', 'USA',
'Scientist');
INSERT INTO nobel_win VALUES (1971, 'Physics', 'Dennis Gabor', 'Hungary',
'Scientist');
INSERT INTO nobel_win VALUES (1971, 'Chemistry', 'Gerhard Herzberg', 'Germany',
'Scientist');
INSERT INTO nobel_win VALUES (1971, 'Peace', 'Willy Brandt', 'Germany',
'Chancellor');
INSERT INTO nobel_win VALUES (1971, 'Literature', 'Pablo Neruda', 'Chile',
'Linguist');
INSERT INTO nobel_win VALUES (1971, 'Economics', 'Simon Kuznets', 'Russia',
'Economist');
INSERT INTO nobel_win VALUES (1978, 'Peace', 'Anwar al-Sadat', 'Egypt',
'President');
INSERT INTO nobel_win VALUES (1978, 'Peace', 'Menachem Begin', 'Israel', 'Prime
Minister');
INSERT INTO nobel_win VALUES (1987, 'Chemistry', 'Donald J. Cram', 'USA',
'Scientist');
INSERT INTO nobel_win VALUES (1987, 'Chemistry', 'Jean-Marie Lehn', 'France',
'Scientist');
INSERT INTO nobel_win VALUES (1987, 'Physiology', 'Susumu Tonegawa', 'Japan',
'Scientist');
INSERT INTO nobel_win VALUES (1994, 'Economics', 'Reinhard Selten', 'Germany',
'Economist');
INSERT INTO nobel_win VALUES (1994, 'Peace', 'Yitzhak Rabin', 'Israel', 'Prime
Minister');
INSERT INTO nobel_win VALUES (1987, 'Physics', 'Johannes Georg Bednorz', 'Germany',
'Scientist');
INSERT INTO nobel_win VALUES (1987, 'Literature', 'Joseph Brodsky', 'Russia',
'Linguist');
INSERT INTO nobel_win VALUES (1987, 'Economics', 'Robert Solow', 'USA',
'Economist');
INSERT INTO nobel_win VALUES (1994, 'Literature', 'Kenzaburo Oe', 'Japan',
'Linguist');

You might also like