Challenge ET

気になったこと書いてます。English IT

2020-01-30から1日間の記事一覧

Function COALESCE on mysql(day24)

I am using the mysql in my job. so, I used function "COALESCE" recently. It's very useful, see the following code. SELECT id, name, COALESCE(phone, 'Not set') AS phone FROM users; Appear "Not set' by default value. We can use "COALESCE" in…