Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: rudof
  • Order by date
  1. rudof

    Passing a variable to a query

    You would have to concactinate the variable into your query. E.g. String VARIABLE = "00001" "delete from TABLENAME where ID = \""+VARIABLE+"\"" so the above query would in actual fact yield "delete from TABLENAME where ID = "00001" The...
  2. rudof

    Getting items into database

    What you are missing in your SQL are the fields into which the values you have specified will go. Here is an example. There is a table called 'Person' with the following fields 1) Name varchar(20) 2) Age int(2) 3) Sex char(1) The correct syntax will be insert into person(name, age, sex)...
  3. rudof

    Using LIKE...having problems with returned recordset

    WHERE `location` LIKE "%Canada%"
  4. rudof

    Problem with the in and not in syntax using MYSQL

    "select code from client where code not in (select code from members)" The above query does not work in MySQL. Any suggestions or alternatives?

Part and Inventory Search

Back
Top