select a range

2003-01-15 Thread bruno peracchio
Hi
I'm newbie

I have to find from xvalue to yvalue; I have written:
$query=SELECT * FROM inner-multipli
WHERE cod_int
LIKE ='%$cod_int1%'
AND cod_int
LIKE ='%$cod_int2'=;
This not work; how can I do?

Thanks in advance

bruper




-
Before posting, please check:
   http://www.mysql.com/manual.php   (the manual)
   http://lists.mysql.com/   (the list archive)

To request this thread, e-mail [EMAIL PROTECTED]
To unsubscribe, e-mail [EMAIL PROTECTED]
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php




Re: select a range

2003-01-15 Thread dunk fordyce
if your using numbers , which i guess you are, you do not need to use LIKE.

$query=SELECT * FROM inner-multipli
 WHERE
 cod_in =$cod_int1
 AND
 cod_int =$cod_int2;


bruno peracchio wrote:

Hi
I'm newbie

I have to find from xvalue to yvalue; I have written:
$query=SELECT * FROM inner-multipli
WHERE cod_in
LIKE ='%$cod_int1%'
AND cod_int
LIKE ='%$cod_int2'=;
This not work; how can I do?

Thanks in advance

bruper




-
Before posting, please check:
   http://www.mysql.com/manual.php   (the manual)
   http://lists.mysql.com/   (the list archive)

To request this thread, e-mail [EMAIL PROTECTED]
To unsubscribe, e-mail [EMAIL PROTECTED]
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php





--

---
===
--- :::   :::  :::   :::   :::===   :::===
--- :::  ===  :::  ::   ===  ::   ===  ===  ::: === ===
--- ===  ===  ===   =   === === ===
--- ===  ===  ===   ===   ===  ===  === ===
--- ===   ===      ==   === ===
www.dunkfordyce.co.uk==



-
Before posting, please check:
  http://www.mysql.com/manual.php   (the manual)
  http://lists.mysql.com/   (the list archive)

To request this thread, e-mail [EMAIL PROTECTED]
To unsubscribe, e-mail [EMAIL PROTECTED]
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php




Re: select a range

2003-01-15 Thread Paul DuBois
At 14:11 +0100 1/15/03, bruno peracchio wrote:

Hi
I'm newbie

I have to find from xvalue to yvalue; I have written:
$query=SELECT * FROM inner-multipli
WHERE cod_int
LIKE ='%$cod_int1%'
AND cod_int
LIKE ='%$cod_int2'=;
This not work; how can I do?


Hard to say.  Even if that syntax was legal, the logic doesn't
make sense.  What does it mean to be greater than or less than
a pattern that has a match-anything wildcard at the beginning.
That completely negates any possible meaning of comparative ordering,
doesn't it?


Thanks in advance

bruper


sql, query

-
Before posting, please check:
  http://www.mysql.com/manual.php   (the manual)
  http://lists.mysql.com/   (the list archive)

To request this thread, e-mail [EMAIL PROTECTED]
To unsubscribe, e-mail [EMAIL PROTECTED]
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php




Re: Re: select a range MySQL

2003-01-15 Thread bruno peracchio

 
 Il mer, 2003-01-15 alle 17:48, Paul DuBois ha scritto:
 
  
  Hard to say.  Even if that syntax was legal, the logic doesn't
  make sense.  What does it mean to be greater than or less than
  a pattern that has a match-anything wildcard at the beginning.
  That completely negates any possible meaning of comparative ordering,
  doesn't it?
  
 Dear Paul
 you are right;
 well, my problem in MySQL is
-selecting a code (var 9) range 
 from 10?
 to   20?
 with variables in html form-
 
 Thanks
 bruno  
 



-
Before posting, please check:
   http://www.mysql.com/manual.php   (the manual)
   http://lists.mysql.com/   (the list archive)

To request this thread, e-mail [EMAIL PROTECTED]
To unsubscribe, e-mail [EMAIL PROTECTED]
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php




Select a range from 0-9 or A-z

2001-02-06 Thread Ung, Seng

hi:
Here is my SQL statement to select a range of number from 0-9

Is there a short cut to this?

id like '1%' or id like '2%' or id like '3%' or id like '4%' or id like '5%' or id 
like '6%' or id like '7%' or id like '8%' or id like '9%' or id like '0%'


thank you
seng

-
Before posting, please check:
   http://www.mysql.com/manual.php   (the manual)
   http://lists.mysql.com/   (the list archive)

To request this thread, e-mail [EMAIL PROTECTED]
To unsubscribe, e-mail [EMAIL PROTECTED]
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php




RE: Select a range from 0-9 or A-z

2001-02-06 Thread Ung, Seng



-Original Message-
From: Ung, Seng 
Sent: Tuesday, February 06, 2001 9:03 AM
To: [EMAIL PROTECTED]
Subject: Select a range from 0-9 or A-z


hi:
Here is my SQL statement to select a range of number from 0-9

Is there a short cut to this?

id like '1%' or id like '2%' or id like '3%' or id like '4%' or id like '5%' or id 
like '6%' or id like '7%' or id like '8%' or id like '9%' or id like '0%'


thank you
seng

-
Before posting, please check:
   http://www.mysql.com/manual.php   (the manual)
   http://lists.mysql.com/   (the list archive)

To request this thread, e-mail [EMAIL PROTECTED]
To unsubscribe, e-mail [EMAIL PROTECTED]
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php




Re: Select a range from 0-9 or A-z

2001-02-06 Thread Steve Ruby

"Ung, Seng" wrote:
 
 hi:
 Here is my SQL statement to select a range of number from 0-9
 
 Is there a short cut to this?
 
 id like '1%' or id like '2%' or id like '3%' or id like '4%' or id like '5%' or id 
like '6%' or id like '7%' or id like '8%' or id like '9%' or id like '0%'


see REGEXP in the manual

you want

id regexp '^[0-9]'

-
Before posting, please check:
   http://www.mysql.com/manual.php   (the manual)
   http://lists.mysql.com/   (the list archive)

To request this thread, e-mail [EMAIL PROTECTED]
To unsubscribe, e-mail [EMAIL PROTECTED]
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php




RE: Select a range from 0-9 or A-z

2001-02-06 Thread Oson, Chris M.

Try:

select whatever from whatever where field like '[0-9]%'

http://www.mysql.com/doc/P/a/Pattern_matching.html


-Original Message-
From: Ung, Seng [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, February 06, 2001 9:03 AM
To: [EMAIL PROTECTED]
Subject: Select a range from 0-9 or A-z


hi:
Here is my SQL statement to select a range of number from 0-9

Is there a short cut to this?

id like '1%' or id like '2%' or id like '3%' or id like '4%' or id like '5%'
or id like '6%' or id like '7%' or id like '8%' or id like '9%' or id like
'0%'


thank you
seng

-
Before posting, please check:
   http://www.mysql.com/manual.php   (the manual)
   http://lists.mysql.com/   (the list archive)

To request this thread, e-mail [EMAIL PROTECTED]
To unsubscribe, e-mail
[EMAIL PROTECTED]
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php

-
Before posting, please check:
   http://www.mysql.com/manual.php   (the manual)
   http://lists.mysql.com/   (the list archive)

To request this thread, e-mail [EMAIL PROTECTED]
To unsubscribe, e-mail [EMAIL PROTECTED]
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php




RE: Select a range from 0-9 or A-z

2001-02-06 Thread The Tilghman

Check out REGEXP in the manual.

-- 
"There cannot be a crisis today.  My schedule is already full."
 --Henry Kissinger

 -Original Message-
 From: Ung, Seng [mailto:[EMAIL PROTECTED]]
 Sent: Tuesday, February 06, 2001 11:03
 To: [EMAIL PROTECTED]
 Subject: Select a range from 0-9 or A-z
 
 
 hi:
 Here is my SQL statement to select a range of number from 0-9
 
 Is there a short cut to this?
 
 id like '1%' or id like '2%' or id like '3%' or id like '4%' 
 or id like '5%' or id like '6%' or id like '7%' or id like 
 '8%' or id like '9%' or id like '0%'
 
 
 thank you
 seng
 
 -
 Before posting, please check:
http://www.mysql.com/manual.php   (the manual)
http://lists.mysql.com/   (the list archive)
 
 To request this thread, e-mail [EMAIL PROTECTED]
 To unsubscribe, e-mail 
 [EMAIL PROTECTED]
 Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php
 
 

-
Before posting, please check:
   http://www.mysql.com/manual.php   (the manual)
   http://lists.mysql.com/   (the list archive)

To request this thread, e-mail [EMAIL PROTECTED]
To unsubscribe, e-mail [EMAIL PROTECTED]
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php