Skip to content

Tag: mysql

a little bit confusing about a syntax on my databases MySQL

i try to check my databases with : I also try to check my databases on : Why are the results different with SHOW DATABASES; and SELECT Db FROM mysql.db; ? Can i update my databases on mysql.db tables ?? Thanks in advance. Answer mysql.db id an internal system table, hence it is hard to find official documenta…

MONTHNAME in Portuguese MYSQL

I´ve got a huge query (In a PHP file) that gives me a monthname from some dates: Is there a way to insert my language inline with MONTHANAME? Something like: I don´t want to write case for eveymonth to transform ‘Dec’ to ‘Dez’ and so on, this will take too long. Answer Unfortunately in…