DJ Anubis wrote:
Alex Roston a écrit :
Ideally I'd like to do something like:
"UPDATE card SET foo='100' where bar='ABC*';"
Use SQL standard construct:
UPDATE card SET foo='100' WHERE bar LIKE 'ABC%' ;
Excellent. Thank You. My problems are solved!!
Alex
Thanks Jay, but I've been there, and didn't see any examples, so I
wasn't sure how it fit into the other commands. (I'm a little dull today
- too many crisises - crisi? whatever... this week.)
Alex
Jay Sprenkle wrote:
On 6/13/06, Alex Roston <[EMAIL PROTECTED]> wrote:
Does SQLite have anyt
I think you mean % not *
% is the wildcard.
-alex
On Jun 13, 2006, at 3:03 PM, Alex Roston wrote:
Does SQLite have anything resembling a wildcard function? I need to
either get rid or modify a whole group of rows which have some
common elements in the primary key.
Ideally I'd like to do som
Alex Roston a écrit :
> Ideally I'd like to do something like:
>
> "UPDATE card SET foo='100' where bar='ABC*';"
>
Use SQL standard construct:
UPDATE card SET foo='100' WHERE bar LIKE 'ABC%' ;
On 6/13/06, Alex Roston <[EMAIL PROTECTED]> wrote:
Does SQLite have anything resembling a wildcard function? I need to
either get rid or modify a whole group of rows which have some common
elements in the primary key.
Ideally I'd like to do something like:
"UPDATE card SET foo='100' where bar='
Does SQLite have anything resembling a wildcard function? I need to
either get rid or modify a whole group of rows which have some common
elements in the primary key.
Ideally I'd like to do something like:
"UPDATE card SET foo='100' where bar='ABC*';"
The construct above doesn't work, but is
EMAIL PROTECTED]
Subject: [sqlite] Wildcards in LIKE
Hello,
Does SQLite v3 support wildcards in the LIKE statement and if yes, how
do I express them? (sorry didn't find any info in the docs on this)
TIA
Dennis
//
Software for animal shelters
http://www.smartpethealth.com
//
Hello,
Does SQLite v3 support wildcards in the LIKE statement and if yes, how
do I express them? (sorry didn't find any info in the docs on this)
TIA
Dennis
//
Software for animal shelters
http://www.smartpethealth.com
//
8 matches
Mail list logo