A function is a tool (or built-in operation) that performs a specific task and returns a value.
.png)
These functions perform a calculation on a single value and return a single value.
.png)
UPPER(): Converts a text string to uppercase.LOWER(): Converts a text string to lowercase.SELECT
Name,
UPPER(Name) AS UppercaseName
LOWER(Name) AS LowercaseName
FROM Employees;
ROUND (): ROUND() function rounds a number to a specified number of decimal places.SELECT ROUND(price, 2) AS rounded_price
FROM products;