Combine multiple SELECT statements
Mar 14,16You can combine multiple SELECT statements into one result set using the UNION operator. The syntax is: SELECT column1, column2 …
Read MoreAliases
Mar 14,16An alias is just an alternate name for a field or value that improves the readability of the queries. They …
Read MoreMySQL aggregate functions
Mar 14,16As we’ve already learned, the MySQL aggregate functions enable you to perform a calculation on a set of values and …
Read MoreMySQL date functions
Mar 14,16As we’ve alreadly learned, the MySQL date functions enable you to manipulate temporal values. In this article we will describe …
Read MoreMySQL string functions
Mar 14,16As we’ve mentioned in the previous article, the MySQL string functions enable you to manipulate strings of data. In this …
Read MoreMySQL functions
Mar 14,16MySQL functions allow you to work on the data right in the database. There are many MySQL built-in functions for …
Read More