查詢#1爲什麼我們使用的FM和焦功能修剪
Select *
from EMPLOYEE
where trim(to_char(joining_date,'Month')) ='January';
查詢#2
select *
from employee
where to_char(joining_date,'Month')='January';
查詢#3
select *
from employee
where to_char(joining_date,'fmMonth')='January';
如果我做我的第一個查詢得到答案。
如果我做第二個查詢,我沒有得到答案。
如果我用3號查詢調頻我得到的答案
這背後的原因。
你能演示演示數據嗎? –