|
|
@ -611,7 +611,7 @@ namespace ZKLT.Hadoop
|
|
|
|
switch (where[_column.Key!])
|
|
|
|
switch (where[_column.Key!])
|
|
|
|
{
|
|
|
|
{
|
|
|
|
case HDP_WhereType.LIKE:
|
|
|
|
case HDP_WhereType.LIKE:
|
|
|
|
_wherestr.Append($@" AND `{_column.Key!}` {where[_column.Key!]} '%' + @{_column.Key!} + '%'");
|
|
|
|
_wherestr.Append($@" AND `{_column.Key!}` {where[_column.Key!]} CONCAT('%',@{_column.Key!},'%')");
|
|
|
|
break;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
default:
|
|
|
|
_wherestr.Append($@" AND `{_column.Key!}` {where[_column.Key!]} @{_column.Key!}");
|
|
|
|
_wherestr.Append($@" AND `{_column.Key!}` {where[_column.Key!]} @{_column.Key!}");
|
|
|
|