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 TouchToneTommy 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: *

  1. wanttoscript

    Absent linked indicies?

    I have two tables with a common index. In one table, tableA, the index is unique, in the other, tableB, it may appear in multiple records, or in none. How can write a query that returns the count of records in tableA that have NO linked records in tableB? All advice will be graciously accepted.
  2. wanttoscript

    Possible to avoid CREATE TABLE?

    I conduct the following 2 queries to get my answer set: CREATE TEMPORARY TABLE temp_table SELECT call_info.call_id, answers.answer FROM answers INNER JOIN call_info ON answers.call_id = call_info.call_id WHERE answers.question=1; SELECT COUNT(temp_table.call_id) as cid, temptable.answer as A...
  3. wanttoscript

    Convert a BinaryRead to ASCII Characters (need speed)

    I am improvising a "file upload" in VBScript, and have succeeded, except in the matter of performance! I need to convert the binary data returned by the BinaryRead method to ASCII, and do it like this: postData = "" Dim biData biData = Request.BinaryRead(Request.TotalBytes)...
  4. wanttoscript

    Optimizing query for 3 JOINed tables

    I am new to MySQL, and am in the process of migrating an ACCESS database to MySQL/PHP. I am having some big performance issues! I have many queries that rely on three tables: i. employee_info (describes a hierarchy of users) ii. call_info (data describing phone calls) iii. answers (answers to...
  5. wanttoscript

    Help with INSERT and dates ...

    I am a REAL beginner ... so please don't laugh. I am having trouble inserting a date into a table: INSERT INTO call_records (date) VALUES (#10/25/02#) "call_records" is a table, with the field "date" which os formatted for general date input. what is the correct syntax...

Part and Inventory Search

Back
Top