具体如下: 我的表格有第6栏,其中一栏为Hiredate。 年限 现在,我只想输出一下星期一或星期二聘用的数据。
目前,我正试图按照以下方针做一些事情:
SELECT name, position, hiredate
FROM table
WHERE hiredate = monday ;
或
SELECT TO_CHAR(hiredate, day )
FROM table
WHERE TO_CHAR(hiredate, day ) = monday ;
这两项工作都没有,我所尝试的其他结构也没有任何变化。
I m fairly certain this is extremely simple, but I am a beginner and am kind of lost on where to go. Any help 或tips would be appreciated.