1answer.
Ask question
Login Signup
Ask question
All categories
  • English
  • Mathematics
  • Social Studies
  • Business
  • History
  • Health
  • Geography
  • Biology
  • Physics
  • Chemistry
  • Computers and Technology
  • Arts
  • World Languages
  • Spanish
  • French
  • German
  • Advanced Placement (AP)
  • SAT
  • Medicine
  • Law
  • Engineering
Ad libitum [116K]
3 years ago
5

. Briefly describe an SQL DML statement for changing existing data in a table.

Computers and Technology
1 answer:
bearhunter [10]3 years ago
8 0

Answer:

The Update statement in the DML is used for changing existing data in a table.

Explanation:

Their are following Sql statement in the DML.

Insert

This SQL statement is used for inserting data into the table.

select

This SQL statement is used for retrieving data from database  

update

This SQL statement is used for updating data in a table.

delete

This SQL statement is used for delete data from database .

The "UPDATE" SQL statement in DML is used for Modify the data in the existing table .

Following are the syntax of Update SQL query

Update tablename

set column1=value1,column2=value2............column N=valueN

Where condition;

Example :Suppose we have student table and (rollno,name,age and add) are the field for that table we have to change the address of rollno 105

Then we use update query like that

UPDATE STUDENT

SET add='kalam nagar'

where rollno=105;

You might be interested in
Give an original idea for an app idea to do with sports, please.
BlackZzzverrR [31]
Maden Mobile is an app for sports :)
5 0
4 years ago
According to the narrator of "EPIC 2015," what is the nature of the news in 2015? A. It is fed to a monitor in people's homes an
allochka39001 [22]

D - it is computer generated content tailored to a person's interests.

Explanation:

D

8 0
3 years ago
g Define a function called most_frequent_letter which takes no arguments. This function will return a dictionary which will have
skad [1K]

Answer:

def most_frequent_letter():

   file = open("words","r")

   dWords = {}

   for line in file:

       line = line.rstrip()

       words = line.split(" ")

       for word in words:

           counts = {}

           for c in word:

               counts[c] = counts.get(c, 0) + 1

           dWords[word] = max(counts, key=counts.get)

   return dWords

print(most_frequent_letter())

Explanation:

the file used was words in txt format and its contents are as follows:

hello aamir jan khan

parallelogram abdullah

anaconda ali

pycharm notebook

3 0
3 years ago
Part 1: Implement a superclass BankAccount that has the following fields and methods.
Alja [10]

Answer:

sorry idk

Explanation:

3 0
4 years ago
Assume each of the variables set1 and set2 references a set. Write code that creates another set containing all the elements of
vampirchik [111]

Answer:

The code to this question as follows:

set3= set1.difference(set2)

Explanation:

In the above python code, we assume that 3 sets are defined that are "set1, set2, and set3". In which two sets set1 and set3 must include some values. and set3 include code that is "set1.difference(set2)".

  • In this code, the set3 includes set1, set2 and use an inbuilt function that is the difference().
  • This function is used to define the difference between set1 and set2 and store values in set3. To know the difference we print set3.
3 0
4 years ago
Other questions:
  • What does the metric column in a routing table do?
    8·1 answer
  • Under the Right to Know Rule, employers need to include information on which one of the following in a written and complete haza
    5·1 answer
  • Write a program FindDuplicate.java that reads n integer arguments from the command line into an integer array of length n, where
    11·1 answer
  • Assume that the type NAME has already been defined. Define a new type, SREC that is a structure consisting of two fields: name (
    5·1 answer
  • What is a prototype ?
    9·1 answer
  • To ensure rapid recovery and security of data, backup data should be ________.
    11·1 answer
  • Discuss how the Internet has made our communication hypertextual, omnidirectional, and more interactive
    6·1 answer
  • PLEASE ANSWER CORRECTLY
    12·1 answer
  • A program virus infect​
    10·1 answer
  • If you have an unstable investment and after 5 years you have 100 dollars less than you started with, is your IRR positive or ne
    14·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!