I am using SQL to Query a database to select fields for the current month but i am unable to do so so far i have used the following
Select *
From stockTrans
Where stocktrans.date = #**/(now)/**#
How ever this isnt working. All it needs to do is to select the current month items and disregard everything else is this possible and how do you do it?
Select *
From stockTrans
Where stocktrans.date = #**/(now)/**#
How ever this isnt working. All it needs to do is to select the current month items and disregard everything else is this possible and how do you do it?