Advertisements
Advertisements
प्रश्न
Give any two basic commands of SQL.
उत्तर
Structural Query Language (SQL) as we all know is the database language by the use of which we can perform certain operations on the existing database and also we can this language to create a database. SQL users certain commands like Create, Drop, Insert, etc. to carry out the required tasks.
The Basic Commands of SQL are explained as follows:
(1) Select: These statements are used to fetch data from a database. Every query will begin with Select.
SELECT column_name
FROM table_name;
(2) Where: It is a clause that indicates you want to filter the result set to include only rows where the following condition is true.
SELECT column_name(s)
FROM table_name
WHERE column_name operator value;
(3) And: It is an operator that combines two conditions. Both conditions must be true for the row to be included in the result set.
SELECT column_name(s)
FROM table_name
WHERE column_1 = value_1
AND column_2 = value_2;
(4) Update: These statements allow you to edit rows in a table.
UPDATE table_name
SET some_column = some_value
WHERE some_column = some_value;
संबंधित प्रश्न
Which property describes the various characteristics of an entity?
How is a view created in SQL?
Which one of the following is the shortcut key in MS Excel to 'undo the last action'?
Which programming language is used to write a Macro in MS Excel?
State any one advantage of maintaining a journal using an electronic spreadsheet instead of preparing it manually.
What is the use of UPDATE command in SQL?
Name the DBMS language component which can be embedded in a programme.
The fill function can be ______ to complete formulas in a range.
Give any two reasons to show that a blank space or zero is not the same as NULL value in SQL.
What are the SQL statements used in Database testing to manipulate the test table?