Welcome to DBA Master ! This blog is dedicated to all things related to database administration , SQL optimization , and performance tuning . Whether you're a beginner or a seasoned DBA, you'll find practical guides, troubleshooting tips, and real-world tutorials to help you work smarter with data. What to Expect: SQL performance tuning tips Indexing strategies Backup and recovery best practices High availability and replication techniques Database creation, configuration, and setup Monitoring queries and scripts for proactive performance management Migration guides across different database platforms Security essentials and best practices Recommended tools for DBAs Real-world error fixes and how to solve them Stay tuned — exciting content is coming soon. Feel free to bookmark and share: www.dbamaster.com ! Thanks for visiting!
Operators:
Manipulates data items and returns a result
Arithmetic Operators:
+ (Addition)
– (Subtraction)
* (Multiplication)
/ (Division)
% (Modulus)
Comparison Operators:
= (Equal to)
!= or <> (Not equal to)
< (Less than)
> (Greater than)
<= (Less than or equal to)
>= (Greater than or equal to)
Logical Operators:
AND (Logical AND)
OR (Logical OR)
NOT (Logical NOT)
Others:
Concatenation Operator (Concat or ||)
In
Between
Null
Like (%,_)
Functions:
Functions take one or more parameters as input, perform a computation or operation, and then return a result.
Predefined Functions and (User Defined Functions):
Scalar functions
- Character or string Functions
- Numeric Functions
- Date Functions
- Conversion Function
- Miscellaneous Function
Aggregate Functions
- Count
- Sum
- Avg
- Max
- Min
- Group by
- Having
- Order by
Character or string Functions:
Concat
Length
Substr
Instr
Lpad
Rpad
Trim
Lower
Upper
Initcap
Numeric Functions:
Ascii
Abs
Ceil
Floor
Round
Power
Sqr
Greatest
least
Mod
Sign
Date functions:
Sysdate
Systimestamp
Months_between
Add_months
Last_date
Next_day
Round
Trunc
Conversion functions:
To_char
To_date
To_number
Miscellaneous Functions:
Nvl
Nvl2
Nullif
Coalesce
Decode
Case
Vsize
Comments
Post a Comment