alias mysql

Solutions on MaxInterview for alias mysql by the best coders in the world

showing results for - "alias mysql"
Emma
27 Sep 2018
1SELECT sysdate() AS "Current date";   -- MySql Alias
Esteban
18 Jun 2020
1SELECT coluna
2AS alias_coluna
3FROM tabela AS alias_tabela;