Advertisements
Advertisements
Question
Give any two basic commands of SQL.
Solution
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;
RELATED QUESTIONS
Which property describes the various characteristics of an entity?
What is a view in SQL?
How is a view created in SQL?
Which one of the following files contains one or more worksheets to organise data?
What is the intersection of a column and a row in a worksheet called?
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.
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.