edited by
3,318 views
1 votes
1 votes

Which of the following statements are DML statements?

  1. Update [tablename]

    Set [columnname]=VALUE

  2. Delete [tablename]

  3. Select * from [tablename]

  1.  a and b
  2. a and d
  3. a, b and c
  4. b and c
edited by

1 Answer

3 votes
3 votes

Data Manipulation Language The SQL commands that deals with the manipulation of data present in database belong to DML or Data Manipulation Language.

Examples of DML:

  • SELECT – is used to retrieve data from the a database.
  • INSERT – is used to insert data into a table.
  • UPDATE – is used to update existing data within a table.
  • DELETE – is used to delete records from a database table.

So all three a,b,c belongs to DML Commands, So 3 is the correct option.

Reference: SQL Commands

Answer:

Related questions

3 votes
3 votes
2 answers
2
Arjun asked Jul 2, 2019
4,165 views
Which of the following features is supported in the rational database model?Complex data-typesMultivalued attributesAssociations with multiplicitiesGeneralization relatio...
3 votes
3 votes
3 answers
3
Arjun asked Jul 2, 2019
3,034 views
With respect to relational algebra, which of the following operations are included from mathematical set theory?JoinIntersectionCartisian productProjecti and ivii and iii...
5 votes
5 votes
5 answers
4
Arjun asked Jul 2, 2019
3,185 views
In relational databases, if relation R is in BCNF, then which of the following is true about relation R?R is in 4NFR is not in 1NFR is in 2NF and not in 3NFR is in 2NF an...