Query All Records After Today's Date
I've got an access database with a field containing dates (each saturday of the year), set up as a date field. In my code i need to write the SQL to select all records that have a date after todays date.
I've got the rest of the code but it's the where clause i'm stuck on. Something like, WHERE mydatefield is after (could i use >?) currentdate. Not really sure how ot go about doing this... I'm using ASP, is there a way the SQL can get the current date, or would i need to generate it and store as a variable first? Also, don't know what type of quotes i would need to use " or ' or + etc.
View Replies
ADVERTISEMENT
I'm trying to get all records from my SQL Server Database with
"DeadlineDate" = today (not today - 24 hours).
All records has a field called "DeadlineDate", and the date is stored in
this field like this: 13.08.2005 07:00:00
I dont care about the hours (Ex: 07:00:00), just the date (ex: 13.08.2005).
This is the SQL I have made, it gets all the record with the date = today -
24 hours... but that is not what I want.
sql = "select title from tblProject where (deadlineDate BETWEEN DATEADD(d, -
1, GETDATE()) AND GETDATE())"
How can I get just the records that has the date = today's date??
View Replies
View Related
When ever i try to search for a number in a form to bring back the customers info i get no result returned! However the customer exsist in the database. What could be the problem?? Code:
View Replies
View Related
how can i get duplicate records through a sql query i am using MS Access database.
View Replies
View Related
I'm writing a work schedule application in ASP, and I am using an Access 2000 DB with the following tables:
WorkSchedule
--------------------------
| ID | Date | EmployeeID |
| .
| .
| .
Employees
---------------------
| EmployeeID | Name |
| .
| .
| .
Status
----------------------------------------------------
| StatusID | DateFrom | DateTo | EmployeeID | Type |
| .
| .
| .
I need to retrieve a list of employees, which are not scheduled for work between the given dates and which have no status (sick leave, maternity leave etc). The object is to see which employees are available for scheduling on the different dates.
The resulting table/recordset should contain one record per date per available employee (see example below). Code:
View Replies
View Related
I have a page that brings back all records from a table in a SQL database.
How can I limit the number of rows to display on the page and then have a link on the bottom for page 2 with the rest of the rows and so ?
For example - I have 500 rows of data in tableA. When I run this query page that brings back everything, I want to display the first 200. And then the user can select the next 200.
View Replies
View Related
I am new to ASP and I want to use a query which links one record in a table to another record in the same table to display a list of values. The query lists the names of all managers (the managers staff no is held in the reports_to field of an employee)
Set rs=Server.CreateObject("ADODB.Recordset")
rs.Open "SELECT DISTINCT p2.Surname + ', ' + p2.[First name] AS Expr1
FROM People p1 INNER JOIN People p2 ON p1.reports_to = p2.[Staff no] WHERE (p1.[Staff no] IS NOT NULL)",con,3,3
while not rs.EOF
%>
<option value="<%=rs("p2.surname")%></option>
<%
rs.MoveNext
wend
rs.Close
However it doesn't like the alias (p2). Is it possible to return a list from this type of query?
View Replies
View Related
I have an ASP page where I want to display the 3 most recent records within a database using a SQL query. The problem is that my page which output the results is only showing the first most recent record and not the two past ones aswell.
Am I right in thinking that might be related to the 'loop' function? I know that my SQL code is fine as I have previewed the results from the code and they are correct. Code:
View Replies
View Related
I am trying to get only the records that have a date entered. my select statment;
strQ ="SELECT Inquiries.CustomerID AS CustomerID, Inquiries.CustomerFName AS CustFName, Inquiries.CustomerLName AS CustLName, Inquiries.CustomerSSN AS CustSSN, Inquiries.CustomerDriverLicense AS CustDrLic, Inquiries.KnownWaterCo AS KnownWaterCo, Inquiries.ShutOffDate AS ShutOFF FROM Inquiries WHERE ((Inquiries.InquiringWaterCo='"&WaterCo&"') AND (Inquiries.Shutoff<>'' ));"
View Replies
View Related
I want to be able to display records inputed from Monday at 12:00am to Sunday at 5 pm. Every week.
So far, I can display records for the last 7 days, but How can I be more specific?
Any Ideas??
View Replies
View Related
I need to run a query to get records with date within 30 days from current date.What I used to do with SQL server 2000 was the following:
Date30More = Date+30
MPQry = "SELECT * FROM SOP_T where Rev_Date < '" & Date30More
This stops working with Oracle because Rev_Date in Oracle is in the format of "DD-MON-YYYY HH:MM:SS PM". Therefore, I received an error message as the following:
Error Type:
Microsoft OLE DB Provider for ODBC Drivers (0x80004005)
[Oracle][ODBC][Ora]ORA-01858: a non-numeric character was found where a numeric was expected
View Replies
View Related
my application i'm busy with allows the user to create forms/tasks then allows them to set it to recurr weekly and the date it must start... question how do i write the sql query to check if that date is today and to show the task every seven days? Code:
View Replies
View Related
I have a page which runs as the reult of a search, records details of the search, it goes a bit like this. get dearch criteria and search datebase.
if no data is found then create a record for that search, including the search query, the search count (set to 1), and the search date.
strSQL = "INSERT INTO SEARCH_STATS (query_details, search_number,
last_search_date) VALUES (" & "'" & ucase(query_details) & "'" & ",1," &
date() & ")"
if the search data is found then increase the search count by one and amend
the last search date. Code:
View Replies
View Related
can anyone tell me the correct way to encapsulate Date so that it can be used in an SQL query. specifically todays date i only want to display records that have the date > today.
View Replies
View Related
I've got a table with three fields:
ref (Autonumber)
notice (memo)
expdt (Date)
I'm trying to use an SQL statement to delete all records where expdt < the current date (Now). Here is the code I'm using:
<%
If Request.Querystring("act") = "clean" Then
Set conn = Server.CreateObject("ADODB.Connection")
conn.Open ConnStr
strExpdt = cdate(Now())
sql = "DELETE FROM tblNboard WHERE expdt < " & Now()
conn.Execute sql
conn.close
set conn = nothing
strResponse = "All expired notices have successfully been deleted."
End If
%>
However, this just gives me the following error:
Syntax error (missing operator) in query expression 'expdt < 11/12/2003 19:54:25'.
What am I doing wrong??
View Replies
View Related
I'm trying to display all the jobs that occur during a selected month/s. Here is the code I use: Code:
View Replies
View Related
I like to pull the top 5 record that are closest to the current date but the date field can not be empty, see some records do not get assigned an expire date and others do. I want to show the closest expiring records.
objconn.commandtext = "SELECT TOP 5 * FROM merchants ORDER BY Expires"
What do I need to add to exclude the emtpy expires field records.
View Replies
View Related
I am looking to create a calendar. I am stuck on how duplicate records based in a date parameter. Example
A person is off between 12-01-04 to 12-09-04 . They submitted a form than contains the description. I want the record to duplicate 8 times because of the date paremeter.
View Replies
View Related
I'm trying to display only those records from the events table with today's date in the event_date field. I thought it would be easy to do with
"SELECT * FROM events where event_date = now() order by event_date asc"
But that returns nothing at all. why it won't work?
View Replies
View Related
how can you delete every single record in a table from the access DB with a DATE column, which stores the date in format DD/MM/YYYY? Code:
View Replies
View Related
I have to put Date Range Query using start and end date form. I have tried but when i run the query puting start and end date value in form, no result shows the records and when i only put start or end value the result shows the records. Code:
View Replies
View Related
How to sort the records in a DB according to the date without query? (I need the exact logic with ASP code)
View Replies
View Related
i have date field in my database table containing date & time value. i want to display records according to system date.
database table name : products
field in database table : pdate
i ahd tried following:
dt = Date
tm = Time
pd = dt & " " & tm
SQL:
select * from products where pdate = #"&pd&"#
u is not working. it gives me syntax error in date.
i had tried all the options like #'pd'#, # " & pd & "# and many more.
View Replies
View Related
I have two tables as such:
First table lists all of the stamps in our inventory:
tbl_Stamp
-------------
Stamp_ID
StampNumber
User_ID (person who owns it)
the second table lists every date that each stamp was accounted for (they need to be accounted for on a monthly basis)
tbl_StampAccountability
---------------------------
StampAccountability_ID
Stamp_ID
DateAccounted
The trick is to be able to show all of the stamps that WERE NOT accounted for between two dates.
I am thinking I need to start with a page that has two text boxes on it, one for start date and one for end date, and then pass those values to a second page that will list each stamp NOT accounted for between those two dates. Any ideas?
View Replies
View Related
How can I do a query like below on a MSSQL server? The format of the date in the db is 10/9/2004 8:38:01 PM
onlinedate = now()
strTimeout = 5
StrOnlineTimedout = dateadd("n",-strtimeout*3,onlinedate)
StrSql = "DELETE FROM active_users WHERE Last_Seen < " & StrOnlineTimedout &""
View Replies
View Related
i am executing an SQL query from ASP -
"Select * from table1 where dDate = #" & CStr(Date()) & "#"
this query executes well on one computer where the date format is - "MM/DD/YYYY" but fails on the other computer - which has a date format of "MM.DD.YYYY".
if i write the query like this on my second computer -
"Select * from table1 where dDate = #" & Replace(CStr(Date()),".","/") & "#"
this goes well ..... but i dont want to do this
View Replies
View Related
I've never worked with ASP, and was thrown into this major problem... I'm trying to perform an INSERT query into an SQL Server database. The query returns an error dealing with the date. The query is being inserted as: Code:
View Replies
View Related
I have an access product inventory DB which has a Last_modified field associated with each product. I need an ASP function that will display all records that have been added within the previous week. Aka, SELECT * FROM TBLINVENTORY WHERE .....
The format of the date and time stored is like this: 18/02/2004 6:15:55 PM ...
View Replies
View Related
I am developing a simple booking system where I had a booking date. The problem is I want to make sure that the user must book 3 days in advanced for certain room.
I have tried to use DateDiff but it seems doesn't work. Actually i just 1 to make sure that the user must book 3 days in advanced from the current date. I am wondering whether there is anything goes wrong in my datediff function. Code:
View Replies
View Related
The problem concerns 2 tables, cart_products and cart_shoppingcart.
Cart_products contains all the product data (eg, prices, product's key name, etc), but most importantly, it contains the quantity of stock (prod_quantity) for each item.
cart_shoppingcart contains all of the user's items in their shoppingcart, including those that are part of an (customer) order; these have the order_number to differentiate from those that aren't in any order (their Order_number is 'no_order', the others have the order number).
Now, what I want to do is this:
For every item in the order (ie, every entry in cart_shoppingcart that matches the username and order number), take the quantity (x) the customer is ordering, then take the quantity of stock remaining (y), then subtract x from y to create the new stock level (z) and update the appropriate record in cart_products with z (all this with SQl preferably).
I was thinking of using a Do while loop, but realised that it wouldn't work as I'd have to use several SQL statements and then I'd run into a problem the minute ASP reads "objrec.movenext".
View Replies
View Related
I'm trying to pull the last 5 records from my database.
<% j=5
rs.MoveLast
While ((j>0) AND (NOT rs_article.BOF))%>
''Execute HTML and data insertion here
<%rs_article.MovePrevious
j=j-1
Wend%>
Everytime I attempt to run this code, I recieve an HTTP 500- Internal Server Error. It tells me no more than that. I know that my connection settings are OK because when I move forward through the database (first five records), the code executes without error. And yes, my Cursor type is Dynamic.
Alternatively, I would also like to know how to add new recordset to the beginning of a database rather than the end.
View Replies
View Related
My code retrieves a username and a password from a form. Then this information is compared to some usernames and passwords that are stored in a database. The important thing here is that the comparison must be case sensitive meaning that "passWord" is not the same thing as "password"
I have this code, working fine in access 2003
SQL = "SELECT * FROM users WHERE StrComp(username_column,'" & entered_username_in_form & "',0) = 0 AND StrComp(password_column,'" & entered_password_in_form & "',0) = 0"
but get the following error when I run it against my sql 2005 database.
[Microsoft][SQL Native Client][SQL Server]'StrComp' is not a recognized built-in function name.
I don't know the corresponding t-sql for the query.
View Replies
View Related
I have an Access database with two fields that I would like to group by. The two fields are location and department. Field names are "Location" and "DeptName".
I have the code correct for grouping by location. That code looks like this: Code:
View Replies
View Related