I was sure I had posted this question here, but I can't find it, so here goes again.
I have a 400+ field database, which I need to query frequently. I have tried dividing it up, but that doesn't work for me, so it's got a tapeworm of a query interface which keeps me from the data mining I need to do.
I have been trying to figure out how to put a new face on it like a .frm fil unsuccessfully.
I am not exactly proficient in sql, but I can work in a framework if I have one.
I found Mike Irwin's piece on Parameterized queries and have been trying to adapt it.
I don't quite get the if then phrases. I don't think they are what I need. What I would like to do is change the query as needed showing producing a table containing all fields limited to parameters entered in text boxes.
I don't this will do it. Any thoughts?
stNAMEID is blank() then
stNAMEID = "check"
else
stNAMEID = "check" + stNAMEID
endif
;...................
stLOCATION is blank() then
LOCATION = "check"
else
LOCATION = "check" +LOCATION
endif
I have a 400+ field database, which I need to query frequently. I have tried dividing it up, but that doesn't work for me, so it's got a tapeworm of a query interface which keeps me from the data mining I need to do.
I have been trying to figure out how to put a new face on it like a .frm fil unsuccessfully.
I am not exactly proficient in sql, but I can work in a framework if I have one.
I found Mike Irwin's piece on Parameterized queries and have been trying to adapt it.
I don't quite get the if then phrases. I don't think they are what I need. What I would like to do is change the query as needed showing producing a table containing all fields limited to parameters entered in text boxes.
I don't this will do it. Any thoughts?
stNAMEID is blank() then
stNAMEID = "check"
else
stNAMEID = "check" + stNAMEID
endif
;...................
stLOCATION is blank() then
LOCATION = "check"
else
LOCATION = "check" +LOCATION
endif