Mar 22 2007

VIF: Very Important Functions

Tag: MySqlberrisch @ 1:15 pm

Comparison Functions and Operators:

IS NULL, IS NOT NULL
MySql Manual



Control Flow Functions:

SELECT IF(1>2,2,3); -> 3
SELECT IFNULL(NULL,10); -> 10
MySql Manual



TIMESTAMP Properties:

HOUR(this.date)
SECOND(this.date)
MySql Manual



Date and Time Functions:

DAYOFWEEK(this.date)
DAYOFMONTH(this.date)
DAYOFYEAR(this.date)
MySql Manual


Mar 20 2007

Logon mysql root + password

Tag: MySqlberrisch @ 12:55 pm

Connect with password

mysql -uadmin -p





Change password to OLD hash

SET PASSWORD FOR ‘root’@'localhost’ = OLD_PASSWORD(’truc’)


« Previous Page