Search results

  1. D

    Solved Good Resource For Learning Access SQL?

    Thanks @cheekybuddha , very helpful. Believe me not wanting to run, just trying to grasp the basics but spinning out of control lol.
  2. D

    Solved Good Resource For Learning Access SQL?

    Thanks @cheekybuddha, it works in PostgreSQL - direct from tutorial mentioned in specific area of Multiple Rows & Multiple Fields area of subqueries Youtube techTFQ titled "Subquery in SQL | Complete SQL Subqueries Tutorial". Thanks for your input on the qry. I just cannot see how I can learn...
  3. D

    Solved Good Resource For Learning Access SQL?

    Think I've ran into another flaw between native SQL & Access SQL. Access will not allow Multiple Row & Multiple field subqueries. Reluctantly I may have to quit the native SQL tutorials on Youtube techTFQ as it seems near unrecognizable in Access. A multiple row, multiple column subquery seems...
  4. D

    Solved Good Resource For Learning Access SQL?

    Thanks people., much appreciated.
  5. D

    Solved Good Resource For Learning Access SQL?

    Thanks @plog, interesting that the prompt from Access is incorrect; should have warned me about the join statement not 'FROM clause'. Grateful for the input on Alias' shorthand only in FROM clause.
  6. D

    Solved Good Resource For Learning Access SQL?

    Thanks @The_Doc_Man, I do not blame you for not downloading. Pasting in Notepad & Word I can't see any unexpected phantoms. I didn't have a primary key in one of the four tbl's as one of the tbl's didn't have an obvious PK (not related to this query). Putting a PK in said table (unrelated to...
  7. D

    Solved Good Resource For Learning Access SQL?

    A brilliant SQL resource on Youtube tachTFQ (great teacher) - BUT exactly how different is native SQL compared to ACCESS SQL? Richard Prost does not indicate a great difference & I would have thought semantically it would be near identical. Seems to have different datatypes, ∴ data-sizes...
  8. D

    Solved Maintain Recordset Updatable With SubQry Single Result Over Many Rows?

    Thank you all for your input, massively appreciated. Sorry @arnelgp, this solved it. I posted at a hectic time & forgot to convert the subqry on the margin% field to a dLookup. The interesting question is WHY does a dLookup solve this. The subqry seems near identical in it's format. Why did I...
  9. D

    Solved Maintain Recordset Updatable With SubQry Single Result Over Many Rows?

    Thanks both for help. I changed the subquery to a dLookup fn using the query designer (which I would imagine it yeilds the same result as altering the SQL) & sadly the recordset remains uneditable. I know the issue is caused by The qry is used in a form but also used in other uses so i need the...
  10. D

    Solved Maintain Recordset Updatable With SubQry Single Result Over Many Rows?

    Thanks @cheekybuddha. I'm unable to post links with SPAM restrictions. Do a search for "Using a Subquery in a SELECT statement; red-gate "Simple Talk by Greg Larsen". I think there are instances where a basic subquery will yeild a single result... 'set as a column value' if I'm interpreting it...
  11. D

    Solved Maintain Recordset Updatable With SubQry Single Result Over Many Rows?

    Thank you @arnelgp. Is dLookup evaluated only once? Then echoed on all the rows? If this is the case then I see it wont' be much of an issue however if the dLookup is used on each row instance then that will be considerably slow.
  12. D

    Solved Maintain Recordset Updatable With SubQry Single Result Over Many Rows?

    What technique can be used when returning a single value used as the entire field in a qry (Field 3; populated by a subquery) whilst also maintaining an editable recordset? (SELECT TendersT.[Margin%] FROM TendersT WHERE (((TendersT.Current)=True))) I have no relationship between the tables/...
  13. D

    Solved Perils Referring To A Value In Listbox By Referring To Listbox Itself (Not .SelectedItems)?

    Everywhere I have read says to use the .ItemsSelected property of a listbox to obtain the value. Looping through on multi-selections. On a single selection listbox it seems that referencing the listbox itself will return the bound column value. Also if there is nothing selected it will return...
  14. D

    Solved Why Some Calculated Fields Will Not Work In A Query?

    Thanks @The_Doc_Man. @Pat Hartman, not trying to be argumentative here at all, for my clarification: How am I misinterpreting you here - so in my mind the below contradicts this: I have defined an alias AREA, used a reference to that alias in the same query in VOLUME; without repeating the...
  15. D

    Solved Why Some Calculated Fields Will Not Work In A Query?

    Thank you both, I'm doing myself no favours in panic posting & making silly errors. @Mike Krailo just bought the first two in your referred link (many thanks).
  16. D

    Solved Why Some Calculated Fields Will Not Work In A Query?

    Any recommendations?
  17. D

    Solved Why Some Calculated Fields Will Not Work In A Query?

    Sorry, no need to reference the object itself in the same query. But I would've thought it would allow it though as I would've thought being as explicit as possible is a good thing usually.
  18. D

    Solved Why Some Calculated Fields Will Not Work In A Query?

    Thanks, I typed it in on the Query Builder thinking as i was referencing an object/ class (table/ query) in trying to avoid the annoying <<Expr>> labels which appear when transferring from 'Expression Categories' & loosing a lot of time navigating. So in using dot's instead of explanation points...
Back
Top Bottom