September 18, 2017
CS Study
SEBI Recruitment for IT Officer
Click here for more
http://www.sebi.gov.in/sebiweb/other/careerdetail.jsp?careerId=98
Click here for more
http://www.sebi.gov.in/sebiweb/other/careerdetail.jsp?careerId=98
September 16, 2017
CS Study
Video Lecture : Boolean Algebra Part 2
Click Below Link -
https://www.youtube.com/watch?v=KTXBFqGMl00&list=PLs3a7KVCedy06OUDhUbt6fh3n3u4R3hzj&index=1
September 16, 2017
CS Study
Video Lecture- Digital Logic Subject || Part 2
Click below link
https://www.youtube.com/watch?v=Uy0Oy2-JGuQ&t=70s
Click below link
https://www.youtube.com/watch?v=Uy0Oy2-JGuQ&t=70s
September 08, 2017
CS Study
SQL supports few Set operations to be performed on table data. These are used to get meaningful results from data, under different special conditions.
Union
UNION is used to combine the results of two or more Select statements. However it will eliminate duplicate rows from its result set. In case of union, number of columns and datatype must be same in both the tables.Example of UNION
The First table,ID | Name |
---|---|
1 | abhi |
2 | adam |
ID | Name |
---|---|
2 | adam |
3 | Chester |
select * from First UNION select * from secondThe result table will look like,
ID | NAME |
---|---|
1 | abhi |
2 | adam |
3 | Chester |
Union All
This operation is similar to Union. But it also shows the duplicate rows.Example of Union All
The First table,ID | NAME |
---|---|
1 | abhi |
2 | adam |
ID | NAME |
---|---|
2 | adam |
3 | Chester |
select * from First UNION ALL select * from secondThe result table will look like,
ID | NAME |
---|---|
1 | abhi |
2 | adam |
2 | adam |
3 | Chester |
Intersect
Intersect operation is used to combine two SELECT statements, but it only retuns the records which are common from both SELECT statements. In case of Intersect the number of columns and datatype must be same. MySQL does not support INTERSECT operator.Example of Intersect
The First table,ID | NAME |
---|---|
1 | abhi |
2 | adam |
ID | NAME |
---|---|
2 | adam |
3 | Chester |
select * from First INTERSECT select * from secondThe result table will look like
ID | NAME |
---|---|
2 | adam |
Minus
Minus operation combines result of two Select statements and return only those result which belongs to first set of result. MySQL does not support INTERSECT operator.Example of Minus
The First table,ID | NAME |
---|---|
1 | abhi |
2 | adam |
ID | NAME |
---|---|
2 | adam |
3 | Chester |
select * from First MINUS select * from secondThe result table will look like,
ID | NAME |
---|---|
1 | abhi |
September 08, 2017
CS Study
Software Engineering is an engineering approach for software
development.The basic principle of software engineering is to use structured,
formal and disciplined methods for building and using systems.The outcome of software
engineering is an efficient and reliable software product.
September 02, 2017
CS Study
The prime reason behind creation of Java was to bring portability and
security feature into a computer language. Beside these two major
features, there were many other features that played an important role
in molding out the final form of this outstanding language. Those
features are :
Subscribe to:
Posts (Atom)