recategorized by
4,081 views

1 Answer

6 votes
6 votes

The SELECT statement is used to select data from a database.

The result is stored in a result table, called the result-set.
SQL SELECT Syntax
SELECT column_name,  (This query will give you one particular column)
FROM table_name;
And
SELECT * FROM table_name; (This will give you all column)

Related questions

2 votes
2 votes
0 answers
1
rahul sharma 5 asked Jul 13, 2017
539 views
Assume i have two tables R(A,B) and S(A,D)1. Select * from R,S2. Select * from R,S where R.A>S.AWhat will be the name/number of columns on both of these cases?
0 votes
0 votes
1 answer
3
Sanjay Sharma asked Apr 13, 2016
4,975 views
The bus which is used to transfer data from main memory to peripheral device isa) data busb) input busc) DMA busd) output bus
5 votes
5 votes
1 answer
4
Vikrant Singh asked Dec 28, 2014
780 views
A relational table Employee (ENo, EName, Dept) has $88$ number of tuples. What will be the result of following SQL statement?SELECT COUNT (ENo) FROM Employee WHERE ENo NO...