T
Toni
If I need to load all records with name John, than I can use "Where
Name='John'";
If I need to load all records which contains pattern Jo, than I can use
"Where Name like '%Jo%'";
But I need to load all records where field Name is one of the names in
this string: "John is director, Jack is programmer, Jim is Analyst, James is
manager".
So I need to load all fields from table Names where field Name is John,
Jack, Jim and James.
Ho to do that with SQL?
Name='John'";
If I need to load all records which contains pattern Jo, than I can use
"Where Name like '%Jo%'";
But I need to load all records where field Name is one of the names in
this string: "John is director, Jack is programmer, Jim is Analyst, James is
manager".
So I need to load all fields from table Names where field Name is John,
Jack, Jim and James.
Ho to do that with SQL?