Вопрос № 66544: Добрый вечер, уважаемые эксперты.
Проблема в следующем (MS SQL):
Есть две не связанные таблицы. 1-я: ModelId, Model (varchar(7)), в которую внесены краткие названия моделей приборов "...8150, 8160, 8160-1 и т.д...". 2-я таблица имее...
Вопрос № 66.544
Добрый вечер, уважаемые эксперты.
Проблема в следующем (MS SQL):
Есть две не связанные таблицы. 1-я: ModelId, Model (varchar(7)), в которую внесены краткие названия моделей приборов "...8150, 8160, 8160-1 и т.д...". 2-я таблица имеет, среди прочих, два столбца "Customer_Order" и "Quantity". Причем в "Customer_Order" указывается полное наименование прибора, в которое включено название модели - "ххх-хх-8160-хххххх". Количество "Х" - не определено."Quantity" - количество приборов в заказе. Подскажите, как
сформировать запрос на получение суммы каждой модели таблицы Model, имеющих совпадения с частью строки таблицы "Customer_Order".
Оператор LIKE здесь не работает, так как принимает подзапрос как строку.
Отправлен: 11.12.2006, 17:12
Вопрос задал: DmitryDE (статус: Посетитель)
Всего ответов: 3 Мини-форум вопроса >>> (сообщений: 1)
Отвечает: PaVeL_Ekt
Здравствуйте, DmitryDE!
попробуйте like ('%8160%')
--------- Да поможет Вам F1, да сохранит Вас F2, во имя CTRL, ALT и святого DEL
Ответ отправил: PaVeL_Ekt (статус: 8-ой класс)
Ответ отправлен: 11.12.2006, 17:23
Отвечает: Grigory
Здравствуйте, DmitryDE!
В MS SQL Server'е есть функция SUBSTRING. Вот синтакс:
Syntax
SUBSTRING ( expression , start , length )
Arguments
expression
Is a character string, binary string, text, image, a column, or an expression that includes a column. Do not use expressions that include aggregate functions.
start
Is an integer that specifies where the substring begins.
length
Is an integer that specifies the length of the substring (the number of characters or bytes to return).
Для определения начальной позиции используйте функйию PATINDEX:
PATINDEX
Returns the starting position of the first occurrence of a pattern in a specified expression, or zeros if the pattern is not found, on all valid text and character data types.
Syntax
PATINDEX ( '%pattern%' , expression )
Arguments
pattern
Is a literal string. Wildcard characters can be used; however, the % character must precede and follow pattern (except when searching for first or last characters). pattern is an expression of the short character data type category.
expression
Is an expression, usually a column that is searched for the specified pattern. expression is of the character string data type category.
Return Types
int
Remarks
PATINDEX is useful with text data types; it can be used in a WHERE clause in addition to IS NULL, IS NOT NULL, and LIKE (the only other comparisons that are valid on text in a WHERE clause).
If either pattern or expression is NULL, PATINDEX returns NULL when the database compatibility level is 70. If the database compatibility level is 65 or earlier, PATINDEX returns NULL only when both pattern and expression are NULL.
Examples
A. Use a pattern with PATINDEX
This example finds the position at which the pattern "wonderful" begins in a specific row of the notes column in the titles table.
USE pubs
GO
SELECT PATINDEX('%wonderful%', notes)
FROM titles
WHERE title_id = 'TC3218'
Ответ отправил: Grigory (статус: 7-ой класс)
Ответ отправлен: 11.12.2006, 18:17
Отвечает: Синельников Сергей
Здравствуйте, DmitryDE!
Что-то вот похожее на это:
SELECT Model, SUM(Quantity) FROM T1 LEFT OUTER JOIN T2 ON (PATINDEX(Model,Customer_Order)>0) GROUP BY Model
К сожалению в MS SQL не силен, поэтому в возможны неточности в синтаксисе запроса, но смысл такой.
Ответ отправил: Синельников Сергей (статус: 1-ый класс)
Ответ отправлен: 12.12.2006, 07:06