Mega Code Archive

 
Categories / MySQL Tutorial / Introduction
 

Keywords may be entered in any lettercase

The following queries are equivalent: mysql> mysql> SELECT VERSION(); +---------------------+ | VERSION()           | +---------------------+ | 5.0.41-community-nt | +---------------------+ 1 row in set (0.00 sec) mysql> select version(); +---------------------+ | version()           | +---------------------+ | 5.0.41-community-nt | +---------------------+ 1 row in set (0.00 sec) mysql> SeLeCt vErSiOn(); +---------------------+ | vErSiOn()           | +---------------------+ | 5.0.41-community-nt | +---------------------+ 1 row in set (0.00 sec) mysql>