MySQL assignments
MySQL assignments
1)Single Row Functions:- They operate on a single row to return a single value per row as the output.
They can accept one or more arguments but return only one result per row.
They are further categorized into:-
(A)Mathematical/Numeric Functions:-
(A.1) pow(): returns the argument raised to the specified power.
(A.2) round(): round(x) rounds the argument to the 0 decimal place whereas round(x, d) rounds the
argument to d decimal places.
x denotes field or value to be rounded off.
d denotes number of decimal to be returned.
(A.2) truncate(): syntax is select truncate(x,d) where x is the field or value to be truncated and d
specifies the number of decimals to be returned.
(A.3) mod(): returns the remainder of one number divided by another and syntax is mod(dividend,
divisor)
(A.4)sqrt():returns the square root value of the specified numeric argument.
(A.5)abs():returns the absolute value means discarding the sign of the specified numeric argument.
(B.4)length(): Returns the length of the character string. It takes spaces special symbols between the
strings into account for calculating the total length of the string passed as an argument to length().
(B.5)replace(): replaces all occurrences of the second string (string2) in the first string(string1) with a
third string(string3). This function takes three arguments.
(B.6)left(): returns leftmost characters from a string passed as an argument, with the specified number of
characters counting from left.
(B.7)right(): returns rightmost characters from a string passed as an argument, with the specified number
of characters counting from right.
(B.8)ltrim(): returns a string after removing leading spaces/blanks from the left side of the string passed
as an argument.
(B.9)rtrim(): returns a string after removing trailing spaces/blanks from the right side of the string
passed as an argument.
(B.10)trim(): returns a string after removing the leading and trailing spaces from a string passed as the
argument to it. It does not delete the spaces in between the strings.
(B.14)instr(): returns the position of the first occurrence of the substring in the given string. Returns 0 if
the substring is not present in the string.
(B.15)concat(): returns the string that results from concatenating the arguments.
(C.5)month(): returns the month from the given date passed as an argument to it.
(2.6)count-distinct:-the keywords distinct and count can be used together to count the number of records
excluding duplicate values.
Order by sorts the records in ascending order(asc) by default. It sorts data in descending order using desc
keyword. Below is the table named stud.
Topic:-Group By and Having clause
The group by clause can be used in a select statement to collect data across multiple records and group
the results by one or more columns.
Suppose we want to display the name and stream and count the total number of students who have
secured more than 90 marks according to their stream, then following query should be given.
The Having clause is used in combination with the Group By clause. It can be used in a Select statement
to filter the records by specifying a condition which a Group by returns. The purpose of using Having
clause with Group by is to allow aggregate functions to be used along with the specified condition.