Tracking Forums, Newsgroups, Maling Lists
Home Scripts Tutorials Tracker Forums
  Advanced Search
  HOME    TRACKER    MYSQL






SuperbHosting.net have generously sponsored dedicated servers to ensure a reliable and scalable dedicated hosting solution for BigResource.com.





Many To Many Matching Query


Bit stuck on a query, or, at least on the best place to start. I've got two tables with a many-to-many relationship. Those are linked by a third table, giving a one-to-many, via a join. Say the one table is products, and the other stores. So, what I can do, is list a store, and all it's products (probably the other way round, but there's no need for that at the moment). They are linked by the third table, product_stores.

What I'd like to do, is be able to find all stores, where a specified two products are stocked. So I can find say, a list of stores that will have apples and oranges, and be able to list all those stores, ignoring stores that stock only one of those.

The first type of query is basic enough "SELECT * FROM product_stores WHERE productid = $variable.
This select is performed on a vew in MySQL.

Any suggestions where to start?
I know the logic would be find all products where storeid = $variable1 and storeid = $variable2 and then make sure you have a matching pair.
My current tables are:
Products
ProdID, ProdDescription, etc.

Stores
StoreID, StoreDescription, etc.

Products_Stores (sits between the many-to-many)
StoreID, ProdID, etc.




View Complete Forum Thread with Replies
Sponsored Links:

Related Messages:
Matching SQL And Database Query
If I open up phpMyAdmin, click on a database named Gypsy, then click on the SQL tab and paste in the following:

GRANT ALL PRIVILEGES ON Gypsy.* TO 'James_Bond'@'localhost' IDENTIFIED BY î‘'

FLUSH PRIVILEGES;
I know it's at least partially working because I see James_Bond listed among the users when I click on "Privileges" - and I don't see James_Bond listed for any other database.

But when I try the following database connection...

PHP

$link = mysql_connect ("localhost" , "James_Bond", "007") or die(mysql_error());
mysql_select_db ("Gypsy", $link) or die(mysql_error());

I get this error message:

Quote:

Warning: mysql_connect() [function.mysql-connect]: Access denied for user 'James_Bond'@'localhost' (using password: YES) in /Users/MyName/Sites/Geobop/index.php on line 194
Access denied for user 'James_Bond'@'localhost' (using password: YES)

View Replies !   View Related
Need Help With Matching A Range Of Character In A Query
The following query (modified from original to make it easier for you to
read) select all of the clients whose fisrt initial of their last name
equals a specified character ($lastInitial). It works fine for characters
A-Z but I need to know what to set $lastInitial to for it to select clients
last names that start with a different character than A-Z such as a number
or some kind of punctuation.

select * from Clients
where left(lastName,1) = $lastInitial
order by lastName ASC

View Replies !   View Related
Select Query, Unique Ids With Matching Values
trying to figure out how to select the pid's from the following table which have matching wid's. ie. the table below would return a result set of 8, 22 and 68 because they are shared by wid 1 and 2.

PHP Code:

 wid        |    pid
---------------
1        3
1        8
1        22
1        56
1        68
1        92
2        2
2        8
2        15
2        22
2        68
2        77 

View Replies !   View Related
Creating A Query That Will Only Return Records With Matching Counterparts
I'm using the table below as an example.

I want to create a MySQL query that will return only records that have matching counter-parts where 'col1' = 'ABC'.

Notice the 'ABC / GHI' record does not have a counter-matching 'GHI / ABC' record. This record should not be returned because there is no matching counter-part. With this table, the 'ABC / GHI' record should be the only one returned in the query.

How can I create a query that will do this?

id | col1 | col2
--------------------
1 | ABC | DEF
2 | DEF | ABC
3 | ABC | GHI
4 | DEF | GHI
5 | GHI | DEF

View Replies !   View Related
How To Do LIKE Matching In A.Name=b.Name
I have a statement as follows

Code:

SELECT * FROM tb1, tb2 WHER tb1.Name = tb2.Name

I would like to do fuzzy matching on the name field. I need something like

Code:

SELECT * FROM tb1, tb2 WHER tb1.Name LIKE '%tb2.Name%'

Also, I tried with

Code:

SELECT * FROM tb1, tb2 WHER LOCATE(tb1.Name, tb2.Name)<>0

View Replies !   View Related
Matching Results
Suppose you have two tables: A and B. Both tables have the same columns: col1, col2, col3, etc.
So my records are distributed in two different tables that have the same format. I know, this is not good normalization design, but that is the way they are setup right now.
The question is: how do I query both in a single sql statement, combine the results of the query get all the records from both, and list the result in alphabetical order?
I can do:

select * from A ORDER BY status;

and I can also run:

select * from B ORDER BY status;

But how do I run both at the same time and get a single output from them?

View Replies !   View Related
Matching Profiles
I am working on a dating website and have to match profiles that are stored in multiple tables. What I am trying to do is to sort results in a descending order starting from best match to the worst, so what I thought of is to use the Levenshtein or similar_text functions on the different values stored in the profile, but later I realized that such an idea would be very time consuming when dealing with thousands records.
Here is an example that shows the structure of my tables:

member[id, login]
look[id_mmeber, weight, hair_color, eyes_color, have_galsses]
pref[id_member, smoke, drink, like_clubbing, like_cafes]
In reality , the profile have more than 3 tables, but 3 will be enough to explain it
So the big question is, is there a way to acheive this by using SQL only ?

View Replies !   View Related
Matching Id Numbers
I have a problem with a user management system.
Simply i have 3 tables.

Table 1 - ID1, Name, Pass

Table 2 - ID2, Name, ItemID

Table 3 - ID3, ItemID, ItemName

Let user login using info from table 1, once logged in query table 2 to get all the ItemID's for the logged in user.Once this is done I need to finally query table 3 looking for matches to the itemid's from table 2 in order to show how many orders for each item but only when the itemid is associated with the user from tables 1 and 2.

View Replies !   View Related
Matching Strings
I have a lot of records in a table named in this pattern "this text is the same.r01 someText (001/100)", "this text is the same.r01 someText (002/100)", "this text is the same.r02 someText (003/100)" etc.

The idea is that i want to automate the process of recognizing the files belonging to the same file(.r02 in this case), and then set a value which shows that is belongs to a certain fileID in another table.
The problem is that i have no idea what would be the best way to do this. My initial guess is that i would have to use a trigger and a LIKE clause comparing the "this text is the same.r02" part of the string, to see if it already exists in the database. If it does, i have to mark it as belonging to the same file.
I guess using a LIKE clause would be very slow, and the amount of records will grow quite big(millions of rows).

View Replies !   View Related
Bitwise Matching
I am using an unsigned INT to store a list of categories for a particular product. Some products can be listed in multiple categories. For example, categories might be 1-Stationery, 2-Furniture, 3-Hardware, etc.

When an item is in multiple categories, i just set the appropriate bit, for example an item that might be listed in stationery and hardware would have bits 1 and 3 set to 1, givng the category a value of 5.

A search then uses a bitwise & to return values based on a user search, for example if a user searches for "stationary and hardware"

Item 1 = 101 (binary)
Search = 101 (binary)
Result = 101 (item1 binary).

What I would like to know is if it's possible to order the results in order of the number of matching bits?

For example 2 items, first with bits 101 set, second with bits 100 set, I would like to return both items, but obviously rank the one with most bits matching the search higher. Is this possible?

View Replies !   View Related
Matching Two Tables
I am trying to pull information from two different tables to be displayed in a php file. Both of these tables share the same field of product_id. I need to pull the product name from one table and the location of the image from another table and display them. This is for a store system and I'm randomly trying to show three products on my homepage.

I am just unsure as to how to pull the information. I have code that connects to the DB already and randomly grabs a product name. My next step I am guess is to match the product_id of the name pulled to the other table and get the filename of the image stored in the other table. This is the code I already have.

<?php

$link = mysql_connect("localhost", "tristate_store", "pword") or die (mysql_error ());

mysql_select_db ('tristate_store', $link) or die (mysql_error ());

$desc = mysql_query ("SELECT * FROM `storeproducts_description` ORDER BY RAND() LIMIT 0,1") or die (mysql_error ());

$res = mysql_fetch_assoc ($desc);

echo ''. $res['products_name'] . ' Click here ' . $res['products_id'];

?>

View Replies !   View Related
Pattern Matching?
I have some data I want to pull out of one field and put into another. The tricky part is that the field the data is in is a text field, and the data could be anywhere in there. So I need to do some sort of pattern matching to find it.

Here is an example of the query I want to run, but I don't know what to put for the question mark.

UPDATE Building SET architect = ? WHERE description LIKE '%Architect: %';

In the description field, architects are in this format:

Architect: name of architect
or
Architect: name of architect, http://example.com/

The name of the architect may contain commas.

So the pattern match needs to do this:

Find "Architect: "
then find ", http://" or "
" or end of field after that
take the text in between and put it in the architect field.

View Replies !   View Related
Matching Escaped Strings
I have the following info in my database

ID|Name
================
1|Author's

As you can see, the name value has been escaped. Now, the question is, how do you match on a value that has escaped charaters? I've tried the following

SELECT * FROM table WHERE Name = 'Author's'

SELECT * FROM table WHERE Name LIKE 'Author's'
SELECT * FROM table WHERE Name = '%Author's%'
SELECT * FROM table WHERE Name = 'Author''s'
SELECT * FROM table WHERE Name = "Author's"
SELECT * FROM table WHERE Name = "Author's"

And none of them work.

View Replies !   View Related
Mysql String Matching
I have string in a field like theses: rel-1-0, rel-2-0, rel-3-0,
rel-21-0.

If comparing them in this way:
select 'rel-3-0'>'rel-21-0';

Mysql will return "1" as true, this is false in our knowledge.
I wonder if there is a way to order such string inside mysql so that

rel-3-0 < rel-21-0?

View Replies !   View Related
Get Count Of Matching Records
I have two tables, that I am trying to match up rows and count the number of times first_name AND last_name in table A match first_name AND last_name in table B. What is the best way to do this without creating a mess of queries and code?

View Replies !   View Related
Pattern Matching Titles
I am having problems trying to do a pattern match between two tables.

I have a table with and id column and a title of a book. In the second I have the title and the author. I want to take the title from second table and retreive the id from the first matching the titles?

View Replies !   View Related
Matching Partial Strings
I've been working all day trying to figure out how to do this query and have exhausted all of my resources.i'm trying to find relationships between the 'category' field of my "songstab" table which can contain more than one category separated by commas and the 'category_set' field of my "category" table which has all of the possible categories as it's rows. it works fine if there is only one category in 'songs.category' but doesn't return anything if there are more than one item (ie. Drama,Comedy,Action). how can i get it to recognize the partial string matches?

View Replies !   View Related
String Matching Across 2 Tables
I have 2 tables.

Table 1 has 2 columns; address (varchar), ID (int)
Table 2 has 1 column; town_name (varchar)

table1.address is a string which contains a town_name. I want to produce a query result that has each address matched up to the correct town_name.
Ideally i would extract the town name directly from the address string but the position of the town name in the address string is impossible to specify.

View Replies !   View Related
Matching Multiple Rows
I've got the following tables with the following columns:

property: id, address, number_of_bedrooms
attribute: id, title (e.g. washing machine, central heating, furnished)
property_attribute: property, attribute (composite primary key on both id columns)

what i'm trying to do is select property ids that have all the attributes i'm looking for, for example, all those properties that have a washing machine and are furnished.

I've been trying things like the following which aren't working, probably because the attribute column won't be equal to two different values at once.

SELECT pa.property FROM property_attribute AS pa INNER JOIN attribute AS a ON pa.attribute=a.id WHERE a.title='washing machine' AND a.title='furnished'

this is returning an empty set because, i think, a.title can't have two values at once. what i want to say in pseudo-sql is:

SELECT pa.property FROM property_attribute AS pa INNER JOIN attribute AS a ON pa.attribute=a.id WHERE
(pa.property=X AND a.title='washing machine') AND (pa.property=X AND a.title='furnished')

so the only results that will be returned are where a property has both attributes.

i can't think of how to do this since there will be varying numbers of attributes i need to search on. perhaps i need to use a variable for pa.property - i tried that, setting it to SELECT DISTINCT property FROM property_attribute, but mysql didn't like it because this query returned multiple rows. i may need some kind of set variable or an array.

View Replies !   View Related
RE Table Name Matching Function
how one would go about specifying a table name in a select statement where the table name is also the name of a function. I know it's poor database design, but unfortunately it's the way it was made many years ago. The table name is "year" and of course, there is a function called "year".

I tried single and double quotes, but that doesn't seem to work I tried searching the documentation, but I haven't found anything.

View Replies !   View Related
Select All Matching Rows
I need to look in table 1 and pick all those records not in table 2.I know that table 2 has 51000 records and table 1 has 65000. I want to see the 14000 in table 1 that doesn't have a match in table 2

View Replies !   View Related
Pattern Matching Using LIKE Or REGEXP
I have a question, what is faster in pattern matching using LIKE or REGXP?

What is the advantages of using LIKE and also the advantages of using REGXP?

View Replies !   View Related
Regexp Matching *.domain.com
I don't think this is possible, but perhaps it's just beyond me?
I have a database of domain names.

other1.com
*.test.test.com
test.com
*.other2.com

How can I validate domain name search like
"test.com" = valid domain
"other.test.com" = invalid domain
"other.test.test.com" = valid domain


Here's my attempt, but i'm not even close.

SELECT * FROM `dns` WHERE `DNS_Lookup` REGEXP ^([^.asterisk.])([.period.])(".$_DNS_SEARCH.")$';";

View Replies !   View Related
Limit On Matching Results Only?
Is there a way to do a limit with a starting and ending value that works like a:

LIMIT 10, 20

only it pulls the 10 resulting rows that matched the where clause of the query vs. just showing the 10 rows regardless of the where clause?

Example:

select product_name from products where product_count > 0 limit $start, $end;

The desired result is that the query returns however many rows fall between the value of $start and $end, lets say 10 rows, but the 10 rows returned are the first 10 rows that matched the where clause of the query and not just the next 10 rows of the table.

View Replies !   View Related
Matching Password With One Already In Database
I am using PHP5 I have written the code to insert a password into the data base for a registrtion form.When I am trying to to match using a log in form so I can continue to the next page I keep getting the error message Username and password are not the same as those on file. Here is my code for inseting into database:

//Make the Query
$query = "INSERT INTO registration (first_name, last_name, email, user_name, password)
VALUES('$fn', '$ln', '$e', '$un', PASSWORD('$p'))";
$result = @mysql_query($query); // Run the query.

Here is my code for retrieving it

$query = "SELECT user_id, first_name FROM registration WHERE user_name1 ='$un' AND password1=PASSWORD('$p')";
$result = @mysql_query ($query);
$row = mysql_fetch_array ($result, MYSQL_NUM);

Can anyone tell me what I am doing wrong.

View Replies !   View Related
Matching A String To Text
What is the best query to use optimized for speed that will search a table for rows where the column value is contained in a block of text that is stored in another table?

For example, if I am storing "Blue, Yellow, Purple, Green" in one large text value in the "color" column of table "Crayons", how do I SELECT the rows in the "Todays_crayons" table if the value in the "color" column matches any of the values in the "color" column (the text block) of the "Crayons" table?

View Replies !   View Related
Pattern Matching With REPLACE()
I am trying to sort results using a selective case-insensitive REPLACE() of "the " only at the beginning of the string like this:

SELECT * ,
REPLACE( title, '^the ', '' ) AS sortName
FROM testing
ORDER BY sortName;

Which produces:

+----+----------+----------+
| id | title | sortName |
+----+----------+----------+
| 3 | Ants | Ants |
| 1 | flag | flag |
| 4 | the aunt | the aunt |
| 2 | The fog | The fog |
+----+----------+----------+

Now I can do this:

SELECT * ,
REPLACE( title, 'the ', '' ) AS sortName
FROM testing
ORDER BY sortName;

Which is a little better:
+----+----------+----------+
| id | title | sortName |
+----+----------+----------+
| 3 | Ants | Ants |
| 4 | the aunt | aunt |
| 1 | flag | flag |
| 2 | The fog | The fog |
+----+----------+----------+

Is there some way to use regex terms with REPLACE() ?

View Replies !   View Related
SQL/PHP Grabbing And Matching Case
I've made a nice login script and I thought it was bug free. But I've come to realize that if you don't have the same case as you did when you registered (e.g. Registered as As5a5sIn5,Logining into as5a5sin5 won't work!) it refuses to let you sign in. My question today is, how can you grab data from mysql and match it through PHP case insensative.

View Replies !   View Related
Output Only Displays Matching Value
I have two tables, Table1 and Table2. When i submit a name from my form ( eg : jimmy ), 'jimmy' is inserted into both tables. Now this part is fine. In the output, it displays the data from both tables ( output: jimmy - jimmy )
The problem i am having lies in my sql statement i believe.
Basically, the way i have it now, it says, if 'jimmy' is in Table1 AND in Table2, output the results, otherwise forget it!
It does not output anything if 'jimmy' is in NOT in Table1 but IS in Table2, or vice versa.

My code :

$result = mysql_query("SELECT".
"`TABLE1`.username,".
"`TABLE2`.username ".
FROM".
"`TABLE1`,".
"`TABLE2`".
"WHERE".
"`TABLE1`.username = `TABLE2`.username ".
"") or die(mysql_error());



View Replies !   View Related
Character Matching Question
Is there any special character to be used if in the following query, i don't care about the user's gender, (that is, i want to have as result both men and women)???

I'm trying:

$query="SELECT * FROM users WHERE gender LIKE '%' ";

or

$query="SELECT * FROM cast WHERE gender LIKE '.' ";

or

$query="SELECT * FROM cast WHERE gender LIKE '*' ";

but none seems to work.

View Replies !   View Related
Matching Keyword Lists
I have a table with 2 fields: aid and keyword.

aid stands for an article and keyword is a keyword in that article. Each article has of course multiple keywords (+/- 200).

What I'm trying to do is find out which articles have the most keywords in common. I have found a way to do this, but am afraid this will explode once I have a substantial amount of articles:

Code:
SELECT aid, count(*) as r FROM `articleKeywords` WHERE keyword IN (SELECT keyword FROM articleKeywords WHERE aid = 1) AND aid != 1 GROUP BY aid ORDER BY r DESC
Is this the right way or are there better ways to do this?

View Replies !   View Related
Matching A Row To Multiple Rows In Another Table
I need to match a record in table1 with multiple records in table2,
and return the record only if it matches all those select records on
table2.

I may need MAGIC UNIONS, MAGIC JOINS, or may be simple subqueries. I
am not sure.

View Replies !   View Related
Simple Pattern Matching Searching
I have a table that stores a list of zip codes using a varchar column type,
and I need to perform some string prefix pattern matching search. Let's say
that I have the columns:

94000-1235
94001
94100

If I run a pattern matching search for the string "940", then I should get
the top two rows of data back. If I run a pattern matching search for the
string "94", then I should get all the three rows of data back.

How can I do that in MySQL? I dont' need to do full-text search for this
prefix pattern matching search, do I?

View Replies !   View Related
Count How Many Matching Rows Exsist
I am new to SQL Querries, can someone help me figure out how to get a result?

I have a column in my db called; emails

some of the email addresses in this column may contain similar domains:

person1@site.com
person2@site.com
person3@someothersite.net

I need the result to count and end up being 2 not 3

Not sure how to make the sql statement:
COUNT (*) FROM database_tabe WHERE email='$email' LIKE '%@%.%'

Not sure how to get this result...

View Replies !   View Related
Matching Title And Article Text
I have a MySQL database with articles in it. Each article has a title and an associated article. In order to provide a search, I feel its probably best to do a match on the title and the article text. The article text is a full text index, as well is the title.

The problem is, the title is in one table and the article text is in another. It was setup this way so titles can be searched without having to read through the massive amounts of article text.

Here is my current SELECT query using MATCH...

View Replies !   View Related
Regexp :: Matching Foreign Characters
I have some wrong data entries which have foreign language characters. I tried to check them with the following query

SELECT bwCountry FROM tableN WHERE bwCountry REGEXP '[^[:alnum:][:space:]_-.]'

Now the problem is that those entries also use the characters I am trying to omit from the search. I was wondering if there was any method to mention a range of such characters so that I can select only those entries which have foreign language characters in the values.

View Replies !   View Related
Show Rows With No Matching Fields
here is my query which probably needs some more advanced join statements:

select * from orders o, customers c, orders_styles os, styles s where o.customers_id = c.customers_id and os.orders_id = o.orders_id and os.styles_id = s.styles_id group by o.orders_id

the problem is that sometimes, because of user input, there will be no matching fields in the tables orders_styles or styles (no rows with matching orders_id exists in table orders_styles to table orders). I still want to show these rows however. Right now, as you can see it only displays rows that have matching rows in orders_styles and styles.

View Replies !   View Related
Return Results From Matching Queries
I have one table with 2 keys and another table with 29 keys. What I need to do is run a query from (or on?) the 16th and 17th keys of the 2nd table, compare them to the 2nd key in the first table and return (join?) any matches as one result. How do I do this?

Basically, what I have is a photo gallery where users can enter a title (name of 16th key in 2nd table) and a caption (name of 17th key in 2nd table) for their pictures (name of 2nd table).

I have a keyword (name of 2nd key in 1st table) dictionary (dict is name of 1st table) that I want to return (display) as clickable links on a search page. Or do I have the order reversed? Should the query run from the first table and then the second?

View Replies !   View Related
Select Not Matching Date Range
I'm looking to write a query which returns a date range result that does not match any date range in the database.

Example.

id date_from date_to
1 2007-10-10 2007-10-11
2 2007-10-12 2007-10-13

Query returns 2007-10-11 or something along those lines.

Is it possible at all?

View Replies !   View Related
Matching To Look For Nodes That Are On Both Server1 And Server2
I am matching to look for nodes that are on both server1 and server2. I want the first value that occurred for nodes on 2. So far, this is what I have come up with:

SELECT DISTINCT(b.node),
MIN(b.start) AS StartTime,
ROUND(b.bytes/1073741824,2) AS Seed
FROM tbla AS a,
tbla AS b
WHERE a.activity LIKE 'backup'
AND b.activity LIKE 'backup'
AND a.hostname LIKE 'acctsm01'
AND b.hostname LIKE 'acctsm02'
AND a.node = b.node
GROUP BY b.node

The problem is that I'm not getting the right value for bytes. I want the column that would correspond with the MIN(b.start), so that what I get is the first Seed for the specific node on the first time it happened.

View Replies !   View Related
Matching The Correct Data In Different Rows
This database is for a website. Inside the database theres a table called products.

Inside the products table theres columns.

The 2 columns that im intrested in are product_model and product_price.

these 2 columns link there data together somehow. I'm just not sure how...

How can i find witch price matches with the specific product model...

View Replies !   View Related
Pattern Matching For Column Names?
I realize it's possilbe to use the '*' character to select all columns in a table, and to use the '%' character to look for patterns in the content of fields to filter rows, but is it possible to use a wildcard character to select mulitple columns with a similar pattern?

For example:

select t.wtg1* from table t

to get all columns with names that begin with 'wtg1'.

View Replies !   View Related
PASSWORD() Function :: Not Matching Passwords
I'm writing a login.php script for my web site and am encountering some problems matching the password of the user logging in. Here's some of my code where I believe the problem to be:

$query = "SELECT user_id, first_name FROM users WHERE username='$u' AND password=PASSWORD('$p')";
echo($query);
$result = mysql_query ($query);
$row = mysql_fetch_array ($result, MYSQL_NUM);
if ($row) {

// Start the session, register the values & redirect.
session_start();
$_SESSION['first_name'] = $row[1];
$_SESSION['user_id'] = $row[0];
header ("Location: [url]http://"[/url]; . $_SERVER['HTTP_HOST'] . dirname($_SERVER['PHP_SELF']) . "/loggedin.php");
exit();

} else {
$message = '<p>The username and password entered do not match those on file.</p>';
}
mysql_close();
} else {
$message .= '<p>Please try again.</p>';
}
}

I keep getting my error message "The username and password entered do not match those on file" listed above in the conditional. The server doing my hosting is running MySQL 4.1.14 - standard. The test login script that is getting passed prints out as follows:

SELECT user_id, first_name FROM users WHERE username='test' AND password=PASSWORD('test1')
Am I doing something wrong with the PASSWORD() function?

View Replies !   View Related
Matching Data Accross 5 Tables
I have a table of projects
I have a linked table containing the required skills for the project
I have a table of skills
I have a table of users
I have a linked table containing the skills held by users

I want to get a list of projects where all of the project skills can be found within a given users skills

Also a bonus for the other way around, ie. For a given project, find all users with all the skills required for a project.

View Replies !   View Related
REGEXP Matching String For Searching
i'm trying to make a search engine that will search a string for $q i have now:

SELECT title FROM table WHERE title REGEXP '($_GET[q])+' "

the problem with REGEXP '($_GET[q])+' is it searches the entire frase only. like if someone searched for "this that and more" it will not match a string with just "this" or "that and" it will only match a sring with the entire "this that and more".

how do i make it so it will match each word as well as the entire string?

View Replies !   View Related

Copyright © 2005-08 www.BigResource.com, All rights reserved