MySQL

Combine multiple SELECT statements

Mar 14,16

You can combine multiple SELECT statements into one result set using the UNION operator. The syntax is: SELECT column1, column2 …

Read More

Aliases

Mar 14,16

An alias is just an alternate name for a field or value that improves the readability of the queries. They …

Read More

MySQL aggregate functions

Mar 14,16

As we’ve already learned, the MySQL aggregate functions enable you to perform a calculation on a set of values and …

Read More

MySQL date functions

Mar 14,16

As we’ve alreadly learned, the MySQL date functions enable you to manipulate temporal values. In this article we will describe …

Read More

MySQL string functions

Mar 14,16

As we’ve mentioned in the previous article, the MySQL string functions enable you to manipulate strings of data. In this …

Read More

MySQL functions

Mar 14,16

MySQL functions allow you to work on the data right in the database. There are many MySQL built-in functions for …

Read More
Geek University 2022