Forum Moderators: open
is there a convention or method to follow when parsing a query?
I am about to make a web site with alot of queries, but so far, I am treating each query as individual. I was hoping that perhaps there was some sort of "smart" way to parse a query.
Ah well. Thank you in advance!
You can combine tables into one query based on relationships between tables. Some databses also support sub-selects, which allow you to create queries within queries.
If your website is going to be used by a lot of people, and you intend on writing data to the database, then you definitely want to get away from Access. Access is primarily a desktop program, not a true client/server application. It can handle maybe 10 simultaneous connections if you are lucky before IIS just stops sending ASP pages.
I migrated to mySQL one long weekend, and never looked back.