是否可以在LIKE子句中使用mysql函数

时间:2012-03-26 04:54:10

标签: mysql sql

我只是想知道是否有可能在where子句中使用mysql函数。 我知道函数可以在where =子句中使用。

实施例

我想使用like子句

来使用此语句
select year from t where year=year(now) -- possible

select year from t where year like 'year(now)'  --- is there any way to use function in like clause using quotes

有可能吗?

1 个答案:

答案 0 :(得分:0)

是。这是可能的。但是我会避免这样做,因为根据功能的不同,它可能会影响性能。