我只是想知道是否有可能在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
有可能吗?
答案 0 :(得分:0)
是。这是可能的。但是我会避免这样做,因为根据功能的不同,它可能会影响性能。