msaccess - sql view - autocomplete / intellisense or alternate way to write queries?

无人久伴 提交于 2020-01-06 06:54:23

问题


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

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!