User Profile

Collapse

Profile Sidebar

Collapse
farriswheel
farriswheel
Last Activity: Dec 18 '06, 02:44 PM
Joined: Sep 29 '06
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • farriswheel
    replied to how to link date function to text box
    Thx Neo!!!
    See more | Go to post

    Leave a comment:


  • farriswheel
    started a topic how to link date function to text box

    how to link date function to text box

    Hello All,
    I am trying to link a date function to a text box.
    I go into text box click on expression builder
    and insert the date function into the after update tab
    when I turn on the form I don't see anything
    Any ideas?
    Farris
    See more | Go to post

  • farriswheel
    started a topic Using the Union

    Using the Union

    Hello All,
    I'm having trouble using a union function with "insert into" function.
    Maybe what I'm trying to do is not possible
    Thanx for the help!
    Farris

    INSERT INTO [temp order_tbl] ( [part no], [part type], cost)
    SELECT [model no], productdescript ion, unitprice
    FROM model_tbl
    WHERE [model no] = (forms![main_frm]![computer_lbx].Value)

    UNION

    INSERT...
    See more | Go to post

  • farriswheel
    replied to Syntax help
    Thanx!!!!!
    I understand now
    Farris...
    See more | Go to post

    Leave a comment:


  • farriswheel
    started a topic Syntax help

    Syntax help

    Good Day,

    I have a table that is labeled temp order_tbl.
    I understand that sql reads the space so the correct way to get around the space is to use brackets: SELECT [temp order_tbl] which seems to work fine until I try the INSERT INTO function:

    INSERT INTO temp order_tbl this gives me a syntax error

    INSERT INTO [temp order_tbl] this gives me invalid use of brackets

    any ideas?...
    See more | Go to post

  • farriswheel
    started a topic the where clause and multiple forms

    the where clause and multiple forms

    Good Day,

    I am attempting get a total sum for the items selected, I keep receiving a error in my query when I try to use the where clause: "the expression is typed incorrectly"

    Notice in the where clause I am trying to retrieve information from a different form!
    Here is the code:
    SELECT SUM (model_tbl.unit price) as cost

    FROM model_tbl

    WHERE model_tbl.unitp rice...
    See more | Go to post

  • farriswheel
    replied to Understanding the SUM Function
    It Does!
    Thanks for the help
    Farris...
    See more | Go to post

    Leave a comment:


  • farriswheel
    started a topic Understanding the SUM Function

    Understanding the SUM Function

    Hello,
    I'm new the SQL language so I am trying to get a grip on the syntax.
    My problem is with the SUM function; I recieve an error when I try and group with other fields:

    Example:

    SELECT SUM(UnitCost) AS TotalUnitCost
    FROM PAYMENTS;
    the above works!

    but when I try and do this:

    SELECT SUM(UnitCost) AS TotalUnitCost
    ,StudentID, LastName
    FROM PAYMENTS;...
    See more | Go to post
No activity results to display
Show More
Working...