Hello,
Since I had a problem with except operator and subqueries, I investigated a
topic on mysql version capability. I tried a few examples which were offered
on this mailing list, all of them gave me a syntax error, so I've read a
manual and tried some examples from it. However, things that m
Hello,
Since I had a problem with except operator and subqueries, I investigated a
topic on mysql version capability. I tried a few examples which were offered
on this mailing list, all of them gave me a syntax error, so I've read a
manual and tried some examples from it. However, things that m
Hello,
I've had a problem trying to get working except operator in mysql:
statement "SELECT study from table WHERE keyword = 'chemistry' NOT keyword
= 'computers'" returns SQL error
I've got the following not working solutions to my problem:
SELECT [distinct] study FROM table WHERE keyword = 'ch
Hello,
I've had a problem:
statement "SELECT data_id from table WHERE keyword = a NOT keyword = b"
returns SQL error
I've got the following not working solutions to my problem:
SELECT data_id FROM table WHERE keyword = a AND keyword <>(or !=) b
SELECT data_id FROM table WHERE keyword = a AND NOT
Hello,
I've had a problem:
statement "SELECT data_id from table WHERE keyword = a NOT keyword =b"
returns SQL error
I've got the following not working solutions to my problem:
SELECT data_id FROM table WHERE keyword = a AND keyword <>(or !=) b
SELECT data_id FROM table WHERE keyword = a AND NOT (
Hello,
Could you please tell me how I can write an sql statement in php when I'd
llike to select boolean search in one field like "except" or "NOT" result.
What I mean here is that I can execute the following:
1. SELECT data_id from table WHERE keyword = a AND keyword =b
2. SELECT data_id from ta
Hello,
I'm trying to find a resulting set for searching two keywords, like:
Select * from table where filed_a like '%keyword1%' OR field_b like
'%keyword1%' INTERSECT (Select * from table where filed_a like '%keyword2%'
OR field_b like '%keyword2%').
This statement gives an error in syntax.
What
Hello,
I'm trying to solve a task in Mysql 4:
I have a table
rec_id | record_ref | keyword
**
1| 2| apple
2| 2|orange
3| 2|apple
4| 3|mango
**
How can I delete
Hello,
I'm trying to solve a task in Mysql 4:
I have a table
rec_id | record_ref | keyword
**
1| 2| apple
2| 2|orange
3| 2|apple
4| 3|mango
**
How can I delete
Hello,
Im working on a search function using PHP4 and MYSQL4.
Im looking for a function that allow to take a string value (consisted of
several substrings separated by coma) out of db field and return each
substring one by one.
Could you please tell me if there is a function that can do somet
10 matches
Mail list logo