<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"><channel><category>pcsoft.us.windev</category><copyright>Copyright 2026, PC SOFT</copyright><lastBuildDate>1 Jul 2016 21:35:00 Z</lastBuildDate><pubDate>30 Jun 2016 21:42:00 Z</pubDate><description>Hi,&#13;
&#13;
is there a simple solution for this ?&#13;
&#13;
SELECT CUSTOMER.CustomerLName&#13;
FROM CUSTOMER&#13;
WHERE CUSTOMER.City IN ('Montpellier', 'Avignon', 'Marseille')&#13;
&#13;
&#13;
Customer.city could be 'Montpellier' or 'Avignon;Marseille'&#13;
&#13;
(multiple selection in a table)</description><ttl>30</ttl><generator>WEBDEV</generator><language>en_US</language><link>https://forum.pcsoft.fr/es-ES/pcsoft.us.windev/58410-sql-problem-multiple-values-for-quotinquot-statement/read.awp</link><title>SQL Problem (Multiple values for the &amp;quot;IN&amp;quot; statement)</title><managingEditor>moderateur@pcsoft.fr (El moderador)</managingEditor><webMaster>webmaster@pcsoft.fr (El webmaster)</webMaster><item><author>guest</author><category>pcsoft.us.windev</category><comments>https://forum.pcsoft.fr/es-ES/pcsoft.us.windev/58410-sql-problem-multiple-values-for-quotinquot-statement-58446/read.awp</comments><pubDate>1 Jul 2016 21:35:00 Z</pubDate><description>Michael&#13;
&#13;
As you say you can split the user chosen city strings and load each value in an array.&#13;
&#13;
Loop through the array - fo…</description><guid isPermaLink="true">https://forum.pcsoft.fr/es-ES/pcsoft.us.windev/58410-sql-problem-multiple-values-for-quotinquot-statement-58446/read.awp</guid><link>https://forum.pcsoft.fr/es-ES/pcsoft.us.windev/58410-sql-problem-multiple-values-for-quotinquot-statement-58446/read.awp</link><source url="https://forum.pcsoft.fr/es-ES/pcsoft.us.windev/58410-sql-problem-multiple-values-for-quotinquot-statement/read.awp">SQL Problem (Multiple values for the &amp;quot;IN&amp;quot; statement)</source><title>Re: SQL Problem (Multiple values for the &amp;quot;IN&amp;quot; statement)</title></item><item><author>guest</author><category>pcsoft.us.windev</category><comments>https://forum.pcsoft.fr/es-ES/pcsoft.us.windev/58410-sql-problem-multiple-values-for-quotinquot-statement-58445/read.awp</comments><pubDate>1 Jul 2016 15:29:00 Z</pubDate><description>Hi Fabrice,&#13;
&#13;
thats true.&#13;
&#13;
I can define a query (not in the Query-Editor), but I hate that :-(&#13;
&#13;
1. Split the User-choosen c…</description><guid isPermaLink="true">https://forum.pcsoft.fr/es-ES/pcsoft.us.windev/58410-sql-problem-multiple-values-for-quotinquot-statement-58445/read.awp</guid><link>https://forum.pcsoft.fr/es-ES/pcsoft.us.windev/58410-sql-problem-multiple-values-for-quotinquot-statement-58445/read.awp</link><source url="https://forum.pcsoft.fr/es-ES/pcsoft.us.windev/58410-sql-problem-multiple-values-for-quotinquot-statement/read.awp">SQL Problem (Multiple values for the &amp;quot;IN&amp;quot; statement)</source><title>Re: SQL Problem (Multiple values for the &amp;quot;IN&amp;quot; statement)</title></item><item><author>guest</author><category>pcsoft.us.windev</category><comments>https://forum.pcsoft.fr/es-ES/pcsoft.us.windev/58410-sql-problem-multiple-values-for-quotinquot-statement-58444/read.awp</comments><pubDate>1 Jul 2016 15:17:00 Z</pubDate><description>Hi again&#13;
&#13;
so you are trying to use a contain X AND contain Y AND contain Z, with an unknown number of X Y Z....&#13;
&#13;
hmmmm&#13;
&#13;
On…</description><guid isPermaLink="true">https://forum.pcsoft.fr/es-ES/pcsoft.us.windev/58410-sql-problem-multiple-values-for-quotinquot-statement-58444/read.awp</guid><link>https://forum.pcsoft.fr/es-ES/pcsoft.us.windev/58410-sql-problem-multiple-values-for-quotinquot-statement-58444/read.awp</link><source url="https://forum.pcsoft.fr/es-ES/pcsoft.us.windev/58410-sql-problem-multiple-values-for-quotinquot-statement/read.awp">SQL Problem (Multiple values for the &amp;quot;IN&amp;quot; statement)</source><title>Re: SQL Problem (Multiple values for the &amp;quot;IN&amp;quot; statement)</title></item><item><author>Sebastian Arnold</author><category>pcsoft.us.windev</category><comments>https://forum.pcsoft.fr/es-ES/pcsoft.us.windev/58410-sql-problem-multiple-values-for-quotinquot-statement-58437/read.awp</comments><pubDate>1 Jul 2016 14:41:31 Z</pubDate><description>How about this:&#13;
&#13;
[code:sql]&#13;
select CustomerLName from customer where ( city like '%London%' or city like '%Berlin%' )&#13;
[/code…</description><guid isPermaLink="true">https://forum.pcsoft.fr/es-ES/pcsoft.us.windev/58410-sql-problem-multiple-values-for-quotinquot-statement-58437/read.awp</guid><link>https://forum.pcsoft.fr/es-ES/pcsoft.us.windev/58410-sql-problem-multiple-values-for-quotinquot-statement-58437/read.awp</link><source url="https://forum.pcsoft.fr/es-ES/pcsoft.us.windev/58410-sql-problem-multiple-values-for-quotinquot-statement/read.awp">SQL Problem (Multiple values for the &amp;quot;IN&amp;quot; statement)</source><title>Re: SQL Problem (Multiple values for the &amp;quot;IN&amp;quot; statement)</title></item><item><author>guest</author><category>pcsoft.us.windev</category><comments>https://forum.pcsoft.fr/es-ES/pcsoft.us.windev/58410-sql-problem-multiple-values-for-quotinquot-statement-58435/read.awp</comments><pubDate>1 Jul 2016 13:58:00 Z</pubDate><description>Hi&#13;
&#13;
Try this:&#13;
&#13;
SELECT CustomerLName FROM CUSTOMER as a&#13;
WHERE a.City IN ('Montpellier', 'Avignon', 'Marseille')&#13;
&#13;
or&#13;
&#13;
SEL…</description><guid isPermaLink="true">https://forum.pcsoft.fr/es-ES/pcsoft.us.windev/58410-sql-problem-multiple-values-for-quotinquot-statement-58435/read.awp</guid><link>https://forum.pcsoft.fr/es-ES/pcsoft.us.windev/58410-sql-problem-multiple-values-for-quotinquot-statement-58435/read.awp</link><source url="https://forum.pcsoft.fr/es-ES/pcsoft.us.windev/58410-sql-problem-multiple-values-for-quotinquot-statement/read.awp">SQL Problem (Multiple values for the &amp;quot;IN&amp;quot; statement)</source><title>Re: SQL Problem (Multiple values for the &amp;quot;IN&amp;quot; statement)</title></item><item><author>guest</author><category>pcsoft.us.windev</category><comments>https://forum.pcsoft.fr/es-ES/pcsoft.us.windev/58410-sql-problem-multiple-values-for-quotinquot-statement-58434/read.awp</comments><pubDate>1 Jul 2016 13:50:00 Z</pubDate><description>Ok,&#13;
&#13;
I try to explain:&#13;
&#13;
My Database has a field with the following values:&#13;
&#13;
Berlin&#13;
Paris&#13;
London&#13;
Paris;London&#13;
Berlin;Pa…</description><guid isPermaLink="true">https://forum.pcsoft.fr/es-ES/pcsoft.us.windev/58410-sql-problem-multiple-values-for-quotinquot-statement-58434/read.awp</guid><link>https://forum.pcsoft.fr/es-ES/pcsoft.us.windev/58410-sql-problem-multiple-values-for-quotinquot-statement-58434/read.awp</link><source url="https://forum.pcsoft.fr/es-ES/pcsoft.us.windev/58410-sql-problem-multiple-values-for-quotinquot-statement/read.awp">SQL Problem (Multiple values for the &amp;quot;IN&amp;quot; statement)</source><title>Re: SQL Problem (Multiple values for the &amp;quot;IN&amp;quot; statement)</title></item><item><author>guest</author><category>pcsoft.us.windev</category><comments>https://forum.pcsoft.fr/es-ES/pcsoft.us.windev/58410-sql-problem-multiple-values-for-quotinquot-statement-58433/read.awp</comments><pubDate>1 Jul 2016 13:43:00 Z</pubDate><description>Hi Michael,&#13;
&#13;
I'm not sure I understand the problem...&#13;
&#13;
In the query editor, when adding the condition, just use the "is in t…</description><guid isPermaLink="true">https://forum.pcsoft.fr/es-ES/pcsoft.us.windev/58410-sql-problem-multiple-values-for-quotinquot-statement-58433/read.awp</guid><link>https://forum.pcsoft.fr/es-ES/pcsoft.us.windev/58410-sql-problem-multiple-values-for-quotinquot-statement-58433/read.awp</link><source url="https://forum.pcsoft.fr/es-ES/pcsoft.us.windev/58410-sql-problem-multiple-values-for-quotinquot-statement/read.awp">SQL Problem (Multiple values for the &amp;quot;IN&amp;quot; statement)</source><title>Re: SQL Problem (Multiple values for the &amp;quot;IN&amp;quot; statement)</title></item><item><author>guest</author><category>pcsoft.us.windev</category><comments>https://forum.pcsoft.fr/es-ES/pcsoft.us.windev/58410-sql-problem-multiple-values-for-quotinquot-statement-58422/read.awp</comments><pubDate>1 Jul 2016 07:30:00 Z</pubDate><description>Hi Curtis,&#13;
&#13;
I need something like a "many to many" SQL Statement.&#13;
&#13;
The user can choose one or many values.&#13;
&#13;
Until now I sp…</description><guid isPermaLink="true">https://forum.pcsoft.fr/es-ES/pcsoft.us.windev/58410-sql-problem-multiple-values-for-quotinquot-statement-58422/read.awp</guid><link>https://forum.pcsoft.fr/es-ES/pcsoft.us.windev/58410-sql-problem-multiple-values-for-quotinquot-statement-58422/read.awp</link><source url="https://forum.pcsoft.fr/es-ES/pcsoft.us.windev/58410-sql-problem-multiple-values-for-quotinquot-statement/read.awp">SQL Problem (Multiple values for the &amp;quot;IN&amp;quot; statement)</source><title>Re: SQL Problem (Multiple values for the &amp;quot;IN&amp;quot; statement)</title></item><item><author>guest</author><category>pcsoft.us.windev</category><comments>https://forum.pcsoft.fr/es-ES/pcsoft.us.windev/58410-sql-problem-multiple-values-for-quotinquot-statement-58412/read.awp</comments><pubDate>30 Jun 2016 22:55:00 Z</pubDate><description>I don't quite understand your question. If 'Montpellier' and 'Avignon;Marseille' are the 2 values to search then the following w…</description><guid isPermaLink="true">https://forum.pcsoft.fr/es-ES/pcsoft.us.windev/58410-sql-problem-multiple-values-for-quotinquot-statement-58412/read.awp</guid><link>https://forum.pcsoft.fr/es-ES/pcsoft.us.windev/58410-sql-problem-multiple-values-for-quotinquot-statement-58412/read.awp</link><source url="https://forum.pcsoft.fr/es-ES/pcsoft.us.windev/58410-sql-problem-multiple-values-for-quotinquot-statement/read.awp">SQL Problem (Multiple values for the &amp;quot;IN&amp;quot; statement)</source><title>Re: SQL Problem (Multiple values for the &amp;quot;IN&amp;quot; statement)</title></item></channel></rss>
