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

Explain oracle’s server parameter file.

0 Answers  


Is it possible to disable the parameter from while running the report ?

1 Answers   Honeywell, Oracle,


What is java oracle used for?

0 Answers  


What is a user role in oracle?

0 Answers  


What is a partition in oracle?

0 Answers  


How to define Data Block size ?

2 Answers  


If a parameter is used in a query without being previously defined, what diff. exist betw. report 2.0 and 2.5 when the query is applied ?

0 Answers   Oracle,


What is use of oracle?

2 Answers   Satyam,


How to use "out" parameter properly?

0 Answers  


how to code performance tuning of oracle PL/SQL? can any body send me the perfect answer?

1 Answers   IBM,


Explain the use of Merge statement in oracle 11g

0 Answers   Infosys,


How do I reset a sequence in oracle?

0 Answers  


Categories
  • Oracle General Interview Questions Oracle General (1808)
  • 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)