HI how to prepare for vernal and non verbal category like
Synonyms, Antonyms and Answering from passages.
No Answer is Posted For this Question
Be the First to Post Answer
Is the sentence correct "The mathematics of RS Agarwal are interesting"
i want the previous question papers of nic
Please send me the last 3 years question papers of State Bank of India clerical exmas, my email chanu613@gmail.com,
What does remittance mean?
Write any two uses of dictionary in the English class with examples.
0 Answers Mahatma Gandhi University,
rich man keeps me in pocket,poor man throws me away,kids eat me,i'm an english word -u-e-l who am i?
please send me the syllabus of managment trainee,.so we can prepiar for that.thanks
what is the smallest bird in world?
vertical measure
what is the meaning of kpo
SSC ? Grade ?D? Exam ENGLISH CLOSET TEST TEST ? 4
SQL> desc product1; Name Null? Type ----------------------------------------- -------- ---------------------------- PROD_ID NOT NULL NUMBER(38) PROD_QTY NUMBER(38) SQL> select * from product1; PROD_ID PROD_QTY ---------- ---------- 123 300 124 200 SQL> desc pmsales; Name Null? Type ----------------------------------------- -------- ---------------------------- PROD_ID NOT NULL NUMBER(38) PMS_QTY NUMBER(38) SQL> select * from pmsales; PROD_ID PMS_QTY ---------- ---------- 123 100 124 200 SQL> create view pmas_prod 2 as select p.prod_id,p.prod_qty,pm.pms_qty 3 from product1 p,pmsales pm 4 where p.prod_id=pm.prod_id; View created. SQL> update pmas_prod 2 set prod_qty=prod_qty-pms_qty; 2 rows updated. SQL> select * from product1; PROD_ID PROD_QTY ---------- ---------- 123 200 124 0 SQL> insert into pmas_prod values(125,400,200); insert into pmas_prod values(125,400,200) * ERROR at line 1: ORA-01776: cannot modify more than one base table through a join view Q How can we insert into this table ?