0
votes
1answer
103 views

Table schema for IP Address Lookups

I am working on a project in which we need to do IP Address lookups. So for this we have got the datasets and now the next steps is to populate this datasets in to the table. And then have some ...
0
votes
1answer
176 views

Efficient lookup in MySQL table with millions of rows

I have a CSV file with about 20 million rows that I'd like to use in my web application. The data is a mapping of postal/zip codes to actual street addresses in the following format: ...
0
votes
1answer
45 views

Suggestions for string lookup optimizations

We have the below MySQL database table with about 75,000 entries. Each entry in the table represents a symbol in the system for which further data could be retrieved. This table is queried for ...
0
votes
1answer
543 views

mysql lookup table

Lookup table - unique row identity The other lookup tables just do not make sense as from what I have seen giving a row an ID then putting that id in another table which also has a id then adding ...
0
votes
0answers
63 views

How can I pass a value from a textbox to a data source lookup that uses MySQL?

I've run into a problem. I'm working on a web page in MS Web Developer, VB template as an aspx file. I have a textbox where a user can enter either no value at all, a partial value, or an exact value. ...
0
votes
2answers
234 views

Lookup a column value in recordset based on the value of another column

I have a MySQL SELECT query (using wpdb_custom->get_results()) that returns two UNSIGNED TINYINT columns Col_1 and Col_2 for an arbitrary number of rows. What is the least costly way in PHP to ...
5
votes
3answers
940 views

Enum vs Reference table vs Lookup class

While I'm designing a MySQL database for a dating website, I have come with the doubt of how to store the referenced data. Currently the database has 33 tables and there are nearly 32 different fields ...
1
vote
1answer
43 views

How to do a data occurance search on a MySQL tables

I am very new in MySQL & PHP. I have 2 tables like these with more than thousands of row. Table "Company A" id | Date | Prize_1 | Prize_2 | Prize_3 | Prize_Consolation 1 | ...
0
votes
3answers
120 views

Best implementation of web service with a huge list lookup

I am planning to offer a simple phrase lookup web service. the number of phrases is around 3-5 million entries, and each entry is less than 50 characters. The service is quite simple, if a phrase ...
2
votes
2answers
69 views

All rows with at least # qualifying rows, per day

Say we have a table like this: **tablename** ID Name Size Date AtStore1 AtStore2 1 Apple Medium 20120101 Yes 2 Pear Medium 20111231 Yes ...
1
vote
1answer
650 views

Exim4 - mysql lookup

I tried exim4 start, but now I get this error: lookup type "mysql" is not available. I installed exim4 with apt-get install exim4. How can I fix this? Regards, Kevin More information: 2011-05-23 ...
2
votes
4answers
336 views

PHP String Evaluation Method

Hoping one of the great minds can help me here. I have a situation where I will receive an international phone number from a provider and I have to do a database lookup and figure out the country, ...
0
votes
2answers
1k views

A lookup table, Store in MySQL or PHP

I have a question regarding to the performance between a lookup table store in MySQL(standalone table) or PHP(array), so here is my data (in array form) $users = array( array(name => 'a', address ...
0
votes
2answers
1k views

MySQL - Complex query including lookup columns from several tables

Here we go again... [EDIT] There is an update at the bottom with SQL to generate a test database. [EDIT] I have struggled a few days now with, for me a rather complex, SQL query. I would never had ...
1
vote
2answers
897 views

MySQL enum column from anothertable column

I'm sure this is either totally impossible or really easy: If I'm creating a table and I want one of the columns to have limited options, it seems that I use either the ENUM or SET value type. But I ...