Wrox Programmer Forums
Go Back   Wrox Programmer Forums > Microsoft Office > Access and Access VBA > Access
|
Access Discussion of Microsoft Access database design and programming. See also the forums for Access ASP and Access VBA.
Welcome to the p2p.wrox.com Forums.

You are currently viewing the Access section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
 
Old March 9th, 2007, 04:07 PM
Friend of Wrox
 
Join Date: Sep 2005
Posts: 106
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via Yahoo to Corey
Default convert a SQL Statement from MS Access to a SQL

Hi everyone.

I'm trying to convert a SQL Statement from MS Access to a standard SQL statement.

Could anyone help me understand how I do this?

HAVING (((EMTADMIN_DR_MESSAGE.MDATE) Between #1/1/2006# And Date()-1) AND ((EMTADMIN_DR_MESSAGE.MESSAGE_NOTES) Like "PID #######" Or (EMTADMIN_DR_MESSAGE.MESSAGE_NOTES) Like "Program ID -*#######" Or (EMTADMIN_DR_MESSAGE.MESSAGE_NOTES) Like "*#######*")


Any Help Is greatly appreciated

Corey

 
Old March 15th, 2007, 06:44 AM
Friend of Wrox
 
Join Date: Mar 2004
Posts: 3,069
Thanks: 0
Thanked 10 Times in 10 Posts
Default

Where is the rest of the statement?

Dim dtDate As Date

dtDate = Date()-1

HAVING [EMTADMIN_DR_MESSAGE.MDATE] Between #1/1/2006# And " & dtDate & " AND [EMTADMIN_DR_MESSAGE.MESSAGE_NOTES] Like 'PID #######' Or [EMTADMIN_DR_MESSAGE.MESSAGE_NOTES] Like 'Program ID -%#######' Or [EMTADMIN_DR_MESSAGE.MESSAGE_NOTES] Like '%#######%'

I am not sure about the # wildcards you are using. ## means date.

Did that help any? Do you have SQL Query Analyzer to try this out on your SQL database?




mmcdonal
 
Old March 19th, 2007, 04:09 PM
Friend of Wrox
 
Join Date: Sep 2005
Posts: 106
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via Yahoo to Corey
Default

Hi Again, can anyone help me identify why I'm getting zero records returned, when I know I should be getting over 10,000 records

SELECT *
FROM emtadmin_BD.NESSAGE
where(NESSAGE_NOTES) Like '%[0-9][0-9][0-9][0-9][0-9][0-9][0-9]%’'


 
Old March 20th, 2007, 06:55 AM
Friend of Wrox
 
Join Date: Mar 2004
Posts: 3,069
Thanks: 0
Thanked 10 Times in 10 Posts
Default

What do these refer to? [0-9][0-9][0-9][0-9][0-9][0-9][0-9]


mmcdonal
 
Old March 20th, 2007, 08:09 AM
Friend of Wrox
 
Join Date: Sep 2005
Posts: 106
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via Yahoo to Corey
Default

That is can be any number 0 through 9

 
Old March 20th, 2007, 08:16 AM
Wrox Author
 
Join Date: Oct 2005
Posts: 4,104
Thanks: 1
Thanked 64 Times in 64 Posts
Send a message via AIM to dparsons
Default

Your trying to evaluate a regular expression in a like statement? Unfortunately, you are evaluating a string literal here so your statement is looking for a field that is similar to: [0-9][0-9][0-9][0-9][0-9][0-9][0-9]that is why your query returns 0 results.

You can evaluate Regular expressions from the Master stored procedures as to whether or not the given input matches the given expression, however, I don't know about searching a field based upon an expression.

================================================== =========
Read this if you want to know how to get a correct reply for your question:
http://www.catb.org/~esr/faqs/smart-questions.html
^^Took that from planoie's profile^^
^^Modified text taken from gbianchi profile^^
================================================== =========
Technical Editor for: Professional Search Engine Optimization with ASP.NET
http://www.wiley.com/WileyCDA/WileyT...470131470.html
================================================== =========
Why can't Programmers, program??
http://www.codinghorror.com/blog/archives/000781.html
================================================== =========
 
Old March 28th, 2007, 12:33 PM
Registered User
 
Join Date: Nov 2005
Posts: 2
Thanks: 0
Thanked 0 Times in 0 Posts
Default

Maybe I'm over-simplifying but wouldn't you want:

SELECT *
FROM emtadmin_BD.NESSAGE
where(NESSAGE_NOTES) Like '%#######%’'

the hash mark is a wild card for numeric data only.





Similar Threads
Thread Thread Starter Forum Replies Last Post
I am trying to convert a MS Access Query to a SQL? WebLadyBug SQL Server ASP 3 March 9th, 2007 12:39 PM
Convert SQL to MS Access Corey Access 1 February 2nd, 2007 11:46 AM
how to convert ms access db to sql server method SQL Server 2000 1 March 11th, 2005 11:44 PM
Calling a Function within an MS SQL Statement flyin Classic ASP Databases 3 September 5th, 2003 03:10 AM





Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.