Skip to main content

Operators in SQL

Operators in SQL

Operator is a special symbols which perform some operation on operands. In SQL all operators are classified into following types;
  • Arithmetic Operators
  • Relational Operators
  • Logical Operators
  • Miscellaneous Operators

Arithmetic Operators

OperatorNameExample (int a=8, b=3)
+Additiona+b=11
-Subtractiona-b=5
*Multiplicationa*b=24
/Divisiona/b=2
%Modulas (Remainder)a%4=0

Relational Operators

OperatorsDescriptionExample: a=10, b=20
=Check both operands value that are equal or not, if yes condition become true.(a=b) false
!=Check the left operands value are not equal to right operands, if yes return true.a!=b=True
>Check the left operand value is greater than right Operand, if yes condition becomes truea>b=False
<Check the left operand value is less than right Operand, if yes condition becomes truea<b=True
<=Check the left operand value is less than or equal to right Operand, if yes condition becomes truea<=b=True
>=Check the left operand value is greater than or equal to right Operand, if yes condition becomes truea>b=False

Logical Operator

OperatorDescription
1ANDAnd are use to combined two or more than two condition together. If both the condition is true then return true.
2OROR are use to combined two or more than two condition together, In this case you need at least one condition is true then return result.
3NotNOT operator reverse the meaning of any logical operator

Truth table of Logical Operator

C1C2C1 AND C2C1 OR C2NOT C1NOT C2
TTTTFF
TFFTFT
FTFTTF
FFFFTT

Miscellaneous Operator

BetweenNot betweenIn
Not inLikeExists
Not existsIs nullIs not null
AnyAllSome
UnionUnion allIntersect
minus
Note: All these Miscellaneous Operator later we will discuss in detail.

Comments

Popular posts from this blog

Introduction of SQL

Introduction of SQL SQL (Structure Query Language)  was initially developed at IBM by Donald D. Chamberlin and Raymond F. Boyce in the early 1970s. This version, initially called SEQUEL (Structured English Query Language), was designed to manipulate and retrieve data stored in IBM's original quasi-relational database management system. Features of SQL SQL is not a case sensitive language. Every commands in SQL should ends with semicolon(;). SQL can also called as sequel (SEQUEL). SQL Sub Language SQL is mainly divided into four sub language Data Definition Language(DDL) Data Manipulation Language(DML) Transaction Control Language(TCL) Data Control Language(DCL) Only for remember You can remember all these command like below; DDL Commands "dr. cat" d-Drop, r-Rename, c-Create, a-Alter, t-Truncate. DML commands "sudi". s-Select, u-Update, d-Delete, i-Insert.

Text Formatting

• Text formatting tags modify the text between the opening tag and the closing tag – Ex. <b>Hello</b> makes “Hello” bold

css introduction

What is CSS? •Stands for Cascading Style Sheet •CSS allows you to style HTML elements, or define how they are displayed. •Styles are normally stored in Style Sheets •External Style Sheetscan save you a lot of work •External Style Sheets are stored in CSS files •Multiple style definitions will cascadeinto one •Examples: –Changing the color of text –Specifying the size and position of a div What is CSS? (cont.) •CSS is an alternative to the “style” attribute. – <div style=“height:500px; width:200px”></div> •Advantages: –Can control the style of many different elements with a single command. –Separation of function: HTML can focus on content while CSS handles styling. CSS (Cascading Style Sheet) •Simple mechanism for adding style to web page •Code be embedded into the HTML file •HTML tag: <style type=“text/css”>CODE</style> •Also be in a separate file FILENAME.css •HTML tag: <link rel=“stylesheet” href=“scs.css” type=“text/css”> •St...