SQL Notes
SQL Notes
SQL Notes
Functions
LOWER():
LEFT(city, 1):
RIGHT(city, 1):
DISTINCT:
Example:
SELECT CAST('123.45' AS DECIMAL(10,2)) AS
result; -- Result: 123.45
-- Here the 10 represents the precision of the
decimal value.
1. p (Precision):
○ Total number of digits that can be
stored, including digits before and
after the decimal point.
○ In this case, 5 means up to 5 digits
total.
2. s (Scale):
○ The number of digits allowed after the
decimal point.
○ In this case, 2 means there are 2
digits after the decimal point.
Examples:
1. Simple Usage
SELECT CEILING(10.1) AS result; -- Output: 11
SELECT CEILING(-4.8) AS result; -- Output: -4
SELECT CEILING(5.0) AS result; -- Output: 5
2. Working with Columns
💡. Key Notes:
The CEILING() function always rounds up, even for negative
numbers:
Examples:
1. Basic Example
-- Output: '1234567890'
3. Replace in a Column
FROM Customers;
4. Case-Sensitive Replacement
-- Output: 'abc456789'
SELECT CAST(CEILING(AVG(CAST(Salary as
Float))-AVG(CAST(REPLACE(CAST(Salary AS
VARCHAR(10)),'0','') AS FLOAT))) AS INT) FROM
Employees;
cast(ceiling(AVG(CAST(Salary as
Float))-AVG(CAST(REPLACE(CAST(Salary AS
VARCHAR(10)),'0','') AS FLOAT))) as int
group by (months*salary)
from station
where lat_n =