• Модуль: sale
  • Путь к файлу: ~/bitrix/modules/sale/lib/location/external.php
  • Класс: BitrixSaleLocationExternalTable
  • Вызов: ExternalTable::deleteMultipleByParentRangeSql
static function deleteMultipleByParentRangeSql($sql)
{
	if($sql == '')
		throw new MainSystemException('Range sql is empty');

	$dbConnection = MainHttpApplication::getConnection();

	$dbConnection->query('delete from '.static::getTableName().' where LOCATION_ID in ('.$sql.')');
}