< =今天同一个月的日期我

时间:2016-09-02 08:42:04

标签: ms-access ms-access-2007

嗨我试图从同一个月但是< =今天的日期

的日期/时间字段中返回所有值

我试过

Month(<=Now())   
Month(<=Date())

到查询构建器

中的表达式字段中

看起来像这样     月([followupdate])

有人能指出我正确的方向吗?

由于

2 个答案:

答案 0 :(得分:2)

您也可以将此条件用于 followupdate

module shift_reg(Out,In,shift_left,shift_right,s0,s1,enable,clock);

    output [3:0] Out;
    input  [3:0] In;
    input shift_left,shift_right,enable,s0,s1,clock;

    reg [3:0] out_reg;

always @(posedge clock & enable)


begin

if ((s0 == 1'b0) && (s1 == 1'b0))                  // Holding 
    begin                 

    end

else if ((s0 == 1'b1) && (s1 == 1'b0))             // Left Shift
    begin

    out_reg[0] <= shift_left;
    out_reg[1] <= In[0];
    out_reg[2] <= In[1];
    out_reg[3] <= In[2];

    end

else if ((s0 == 1'b0) && (s1 == 1'b1))             // Right Shift
        begin

        out_reg[0] <= In[1];
        out_reg[1] <= In[2];
        out_reg[2] <= In[3];
        out_reg[3] <= shift_right;                        

        end

else if ((s0 == 1'b1) && (s1 == 1'b1))         // Loading 
        begin 

        out_reg <= In;          

        end 

end

assign Out = out_reg;

确实,如果您在 followupdate 上有索引。

答案 1 :(得分:1)

您需要两个标准(在两个标准列中):

Month([followupdate]) = Month(Date())
AND
[followupdate] <= Date()