what is the syntax of UPDATE command?

Answers were Sorted based on User's Feedback



what is the syntax of UPDATE command?..

Answer / shalya

UPDATE <table name> SET <column name>=<new value> WHERE
<condition>;

Is This Answer Correct ?    23 Yes 2 No

what is the syntax of UPDATE command?..

Answer / guest

update tablename set columnvalue=newvalue where condition;

Is This Answer Correct ?    9 Yes 0 No

what is the syntax of UPDATE command?..

Answer / rajini

As per my knowledge first and third one is correct.That is

UPDATE <table name> SET <column name>=<new value> WHERE
<condition>;

Is This Answer Correct ?    9 Yes 0 No

what is the syntax of UPDATE command?..

Answer / mohan

update tablename set columnname=newvalues where conditions;

Is This Answer Correct ?    5 Yes 0 No

what is the syntax of UPDATE command?..

Answer / vishal b. patel

1. Below SP apply for all records of the Table

UPDATE <table name> SET <column name>=<new value>

----------------
2. Below SP apply for those records which are match with
the <condition>...

UPDATE <table name> SET <column name>=<new value> WHERE
<condition>

Is This Answer Correct ?    3 Yes 1 No

what is the syntax of UPDATE command?..

Answer / naweed ahmad

UPDATE TABLE NAME SET COLUMN NAME=NEW VALUE
WHERE CONDITION;
--(WHERE CONDITION IS OPTIONAL)

Is This Answer Correct ?    2 Yes 0 No

what is the syntax of UPDATE command?..

Answer / jyoti ranjan samal

Update table name
set <column name>= New value
where <condition>

Is This Answer Correct ?    1 Yes 0 No

what is the syntax of UPDATE command?..

Answer / guest

select * from tablename
where(col1=>10)update col2=234;

Is This Answer Correct ?    2 Yes 11 No

Post New Answer

More Oracle General Interview Questions

query to find the maximum no persons with same age(age colomn) from emp table

1 Answers  


What is tns name?

0 Answers  


We are using Oracle apps with XML publisher.In that,we are facing some problems while giving a Footer in RTF Template.While giving a footer in RTF Template it is Visible in all the pages,but after the PDF is getiing generated,the Footer are Visible on alternate pages only (like on first page ,third page) and so on. Please provide the Solution for getting the Footer on all the pages.

0 Answers  


HOW TO DISPLAY MAXIMUM SALARIES FROM EMP DEPARTMENT VISE ALONG WITH DEPARTMENT NAMES? E.g EMP,DEPT

5 Answers   College School Exams Tests, DELL,


What are various constraints used in SQL?

1 Answers   Polaris,






What is meant by raw datatype?

0 Answers  


what is trigger?

6 Answers   Oracle,


what is the use of triggers in Java program? I mean where do we use triggers in Java programming?

0 Answers  


Is there an oracle sql query that aggregates multiple rows into one row?

0 Answers  


What is difference between truncate and delete?

0 Answers  


Why is oracle used?

0 Answers  


What are the components of Logical database structure of ORACLE database?

4 Answers  


Categories
  • Oracle General Interview Questions Oracle General (1789)
  • Oracle DBA (Database Administration) Interview Questions Oracle DBA (Database Administration) (261)
  • Oracle Call Interface (OCI) Interview Questions Oracle Call Interface (OCI) (10)
  • Oracle Architecture Interview Questions Oracle Architecture (90)
  • Oracle Security Interview Questions Oracle Security (38)
  • Oracle Forms Reports Interview Questions Oracle Forms Reports (510)
  • Oracle Data Integrator (ODI) Interview Questions Oracle Data Integrator (ODI) (120)
  • Oracle ETL Interview Questions Oracle ETL (15)
  • Oracle RAC Interview Questions Oracle RAC (93)
  • Oracle D2K Interview Questions Oracle D2K (72)
  • Oracle AllOther Interview Questions Oracle AllOther (241)