问题
I have a bit of experience with SQL (still learning), but I want to start using MSAccess.
I'm wondering if there is a better way to write SQL (without using design view) then using the SQL View as it doesn't have auto-complete / intellisense.
I was thinking that I could connect it to SQL server management studio, but I'd be able to write the query and then be able to keep it within the MSAccess database.
Thanks.
回答1:
Short answer: No, there isn't.
But; a quick google reveals some third party utilities that claim to make developing SQL queries easier - to be honest, I doubt they're very good. The reason for my doubt, is that the way MS Access databases are "built" as a file is very different to most bigger database systems. Bigger systems like MySql and MS SQL make it very easy to get the schema of the tables you are working with, so utilities can get this schema as you are working and show it to you in the form of Intellisense.
However, what I used to do when I was maintaining some legacy MS Access "Applications" was to use a text editor like Notepad++, which has some rudimentary autocomplete functionality, as well as SQL syntax highlighting. Far from perfect, but it got the job done.
来源:https://stackoverflow.com/questions/31876712/msaccess-sql-view-autocomplete-intellisense-or-alternate-way-to-write-quer