• Модуль: sale
  • Путь к файлу: ~/bitrix/modules/sale/lib/location/search/word.php
  • Класс: BitrixSaleLocationSearchWordTable
  • Вызов: WordTable::getBoundsByWord
static function getBoundsByWord($word)
{
	$word = trim($word);

	$dbConnection = MainHttpApplication::getConnection();
	$sql = "select MIN(POSITION) as INF, MAX(POSITION) as SUP from ".static::getTableName()." where WORD like '".ToUpper($dbConnection->getSqlHelper()->forSql($word))."%'";

	return $dbConnection->query($sql)->fetch();
}