CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2

Thread: sql request

  1. #1
    Join Date
    May 1999
    Posts
    22

    sql request

    Hi

    I have to do a request with two Acces table. In my first table, Employes, i have to take all the records that the field Name will correspond to the name enter in the textBox in one of my forms. in the ohter table, Input, the field Validation should be set to No, if is not the record is not good and it should be ignore.

    How can i do that? Do i have to do some relation between this two table or we can to the request without it? The two table have a key NumEmploye.

    Thanks a lot


  2. #2
    Guest

    Re: sql request


    "SELECT * FROM FirstTable WHERE Name = " & TextBoxWithNameValue.Text



    This should help, but the greater help you can get from books. You cannot learn everything from News Groups and Forums. It's much harder.
    Vlad


Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured