User Profile

Collapse

Profile Sidebar

Collapse
ProgrammingStudent
ProgrammingStudent
Last Activity: Mar 5 '08, 10:04 PM
Joined: Feb 19 '08
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • ProgrammingStudent
    started a topic Problems with select statement

    Problems with select statement

    I have 2 tables:

    Customer Table
    -CustomerID
    -CustomerName
    -CustomerState

    Invoice Table
    -InvoiceID
    -CustomerID

    I am having problems writing a select statement to find out which states have no customers in the invoice table...

    Any ideas?

    I have tried this:

    select customerState
    from customers
    where customerID not...
    See more | Go to post

  • ProgrammingStudent
    started a topic TextBox - SelectAll() Problem

    TextBox - SelectAll() Problem

    I have one text box where I enter a number. I can either click the calculate button or use the accept property (enter) to perform the calculation and display the answer in a label.

    I use the SelectAll() method to select the number in the text box when it has the focus.

    When I use the calculate button is works correctly but when I just hit enter the text box has the focus but the number is not selected.

    ...
    See more | Go to post

  • ProgrammingStudent
    replied to SQL Help with two table
    Thank you. It worked perfectly!
    See more | Go to post

    Leave a comment:


  • ProgrammingStudent
    started a topic SQL Help with two table

    SQL Help with two table

    Here's the deal. I have two table but I want to include everything in table A that isn't in table B.

    I have a list of product numbers in table A and I want to make a list of the one's in table B that haven't been used yet.

    SELECT TableA.ProductN umer
    FROM Table A Full Join TableB
    ON TableA.ProductN umber <> TableB.ProductN umber
    See more | Go to post
    Last edited by ProgrammingStudent; Feb 19 '08, 05:36 AM. Reason: Not Complete
No activity results to display
Show More
Working...