Enhance the SQL Editor
Some features would be good to developers:
1) Tabbed SQL Query Windows - allow user to create a query window without binding to a query object (like we do in SQL Server)
2) Format the query field with highlighting, identation, colors and make possible to even resize the font size. .
3) Allow intellisense to get [table].[field] list (in A2013 we have it in Query Designer but no in SQL mode)
4) Split the window in SQL Query and result pane - and make it possible to see result in table or text format (like we have in SQL Server). So, we can click on "execute/run" and see both panels.
Thanks!
The Access team is adjusting our status for this request – we are planning to embed the Monaco Editor (support for SQL Editor improvements) into Access, to be released within the next semester (first half of 2021), which will provide capabilities such as syntax highlighting, IntelliSense, SQL comments, and more. We are excited to have this capability released by next year, and we appreciate the energy and enthusiasm on this feature request. We still have a long ways to go to improve our experience with SQL, so please stay tuned as we execute on this objective!
Thanks,
-Access Product Team
16 comments
-
Andrew commented
any update on timing for this?
-
wilo commented
this are realy goog news!
-
James Muka commented
Great News! Keep it going Access team!
-
wilo commented
this will be a very usefull feature!
-
Jesse Li commented
Please act on these improvements. A lot of people want this to happen, myself included.
-
Mark Hammer commented
If I were Microsoft and didn't want to spend any time on making the SQL editor reasonably usable (which doesn't make any sense), then make an offer to FieldEffect LLC for their Access SQL Editor plug-in, and make it a standard part of Microsoft Access. It does formatting and syntax coloring, and the only basic thing missing is a way to change the background color and text colors.
-
Anonymous commented
Why not combine the editing of everything: SQL, VBA, and Expressions in a single simplified VS-like editor?
-
wilo commented
a very simple improvement for me would be:
allow the font to be configured für query designer
persist the formatting for SQL-Querys (like it already is for union querys) -
Queen Nikole West commented
Allow assigned users to submit updates direct to SQL as well as give the owner the ability to set a reminder for the assigned employees.
-
isladogs commented
Also allow users to move direct to SQL view from the ribbon rather than first selecting design view
-
Bruce commented
I wish they'd take out the thing that vomits unnecessary parentheses all over my WHERE clauses.
-
Mark Jaskula commented
Pitty this won't go anywhere. You can always use SSMS to create your queries and then use passthrough SQL queries using something like the following hack:
Dim qdf As DAO.QueryDef
Set qdf = CurrentDb.CreateQueryDef("")
qdf.connect = "ODBC;Database=tsfe;FileDSN=C:\settings\tsfe.dsn;"
qdf.sql = queryStr
qdf.ReturnsRecords = True
qdf.ODBCTimeout = 0
Set SQLOpen = qdf.OpenRecordset
Set qdf = Nothing -
[Deleted User] commented
We asked numerous times to enhance the SQL editor and they all been shot down. Just not going to happen any time soon, if ever!
-
Ben Sacheri commented
Save your votes. This has already been set as [NO CURRENT PLAN] in a similar issue.
https://access.uservoice.com/forums/319956-access-desktop-application/suggestions/10263849-provide-a-better-sql-editor -
RaymondC commented
Complicated queries with multiple outer joins often require sub-queries. While this can be done in the SQL window, it would be nice if there was a way to do this in the designer window.
It would also be nice if you could create SQL Server pass-through queries in the designer window and not just manually in the SQL window (or in code).
-
Mark Burns commented
this request duplicate the basic point of at least 2-3 other requests already posted.