Prepare
Practice
Interview
Aptitude
Reasoning
English
GD
Placement papers
HR
Current affairs
Engineering
MCA
MBA
Online test
Login
Update allows user to change multiple fields - Database
Home
>>
Category
>>
Programming Language (MCQ) questions
>>
Database
Q. Which command allows the user to change multiple fields?
- Published on 27 Aug 15
a.
Modify
b.
Lookup
c.
Update
d.
Change
ANSWER: Update
Related Content
Networking (
207
)
Database (
97
)
C programming (
58
)
Software Engineering (
28
)
SQL (
5
)
HTML (
74
)
Web Technologies (
11
)
Data Structure (
140
)
Operating System (
96
)
Java (
25
)
Oracle (
5
)
C++ (
50
)
Algorithms (
7
)
PL/SQL (
13
)
JavaScript (
7
)
XML (
0
)
CSS (
1
)
Discussion
Nirja Shah
-Posted on 02 Nov 15
- The UPDATE Query is used to modify the existing records in a table.
- WHERE clause can be used with UPDATE query to update selected rows otherwise all the rows would be affected.
- Syntax:
The basic syntax of UPDATE query with WHERE clause is as follows:
UPDATE table_name
SET column1 = value1, column2 = value2...., columnN = valueN
WHERE [condition];
- A combination of N number of conditions using AND or OR operators can be used.
➨
Post your comment / Share knowledge
Required!
Required!
Invalid Email Id!
Required!
Enter the code shown above:
Please enter the code shown above
(Note: If you cannot read the numbers in the above image, reload the page to generate a new one.)
MCQs
English
Tutorials
Download
▲