mysql函数中upper()的意思和排除空值

mysql函数中upper()的意思和排除空值

select name from user where upper(name) ='TOM' and sal is not null;
upper()函数的作用是把表中的name转换成大写再做比较

你可能感兴趣的:(mysql函数中upper()的意思和排除空值)