public static function getLoadSql()
    {
        $tableName = Product::getTableName();
        return '
			SELECT
				`' . $tableName . '`.*
			FROM
				`' . Product::getDbName() . '`.`' . $tableName . '`
		';
    }