Monaco Editor - Good Stuff!

NauticalGent

Ignore List Poster Boy
Local time
Today, 07:20
Joined
Apr 27, 2015
Messages
6,915
I opened up a query in SQL view and here is what I saw:

Code:
SELECT
    tbl_Participants.RiderID,
    [FirstName] & " " & (" """ + [NickName] + """") AS Member,
    tbl_Participants.LastName,
    tbl_Participants.Email,
    tbl_Participants.ContactNumber,
    tbl_Participants.MotorcycleOwner
FROM
    tbl_Participants
    INNER JOIN tbl_Events ON tbl_Participants.RiderID = tbl_Events.RiderID
WHERE
    (
        ((tbl_Participants.Email) IS NOT NULL)
        AND ((tbl_Events.EventDate) = #7 / 27 / 2024 #)
    )
ORDER BY
    tbl_Participants.RiderID;

Love this format, every once in awhile the Access team gets it right...
 
Last edited:
I opened up a query in SQL view and here is what I saw:

Code:
SELECT
    tbl_Participants.RiderID,
    [FirstName] & " " & (" """ + [NickName] + """") AS Member,
    tbl_Participants.LastName,
    tbl_Participants.Email,
    tbl_Participants.ContactNumber,
    tbl_Participants.MotorcycleOwner
FROM
    tbl_Participants
    INNER JOIN tbl_Events ON tbl_Participants.RiderID = tbl_Events.RiderID
WHERE
    (
        ((tbl_Participants.Email) IS NOT NULL)
        AND ((tbl_Events.EventDate) = #7 / 27 / 2024 #)
    )
ORDER BY
    tbl_Participants.RiderID;

Love this format, every once in awhile the Access team gets it right...
Join Colin's upcoming AUG meeting for a full one-hour tour de force on new Access features. I'm too lazy to find the link, but it's here somewhere.
 
There are issues, hopefully they will be resolved soon. Main bugbear for me is sql using an aliased query created in Monaco is not always recognised as valid in the QBE
 
The new expanded SQL format is just one of the three major improvements added to Monaco recently.
The other two are:
a) partial query execution
b) speedy (pre-) loading (version 2507)
See my article on these features:

I will indeed be demonstrating all of these together with several other New and Forthcoming Access Features in my presentation to the Access Europe User Group on Wed 6 Aug @18:00 UK time.
For more info, see the link @Gasman provided in post #4 or see the full details at:
 

Users who are viewing this thread

Back
Top Bottom