Viewing 8 posts - 1 through 8 (of 8 total)
Where must I specify the length more then 1 symbol ?
June 12, 2015 at 8:07 am
I use nvarchar(20) everywhere, but it doesn't help (
June 12, 2015 at 8:01 am
In the morning I dont have right variant.
Now I have 4 right variants:
SELECT TOP 1 WITH TIES LastName, COUNT (*) AS CountOfBooks FROM
(SELECT LastName FROM Libs L, S_Cards S
WHERE S.id_lib...
June 11, 2015 at 3:05 pm
Both variants are right for my task )
I like more my variant and your first variant.
Your second variant i dont like )
June 11, 2015 at 1:54 pm
I wanna specify: the second your variant is faster than first ?
June 11, 2015 at 1:43 pm
I have 2 right variants: big and small.
Small variant:
SELECT TOP 1 WITH TIES LastName, COUNT (*) AS [count] FROM
(SELECT LastName FROM Libs L, S_Cards S
WHERE S.id_lib = L.id
UNION ALL
SELECT LastName...
June 11, 2015 at 9:40 am
Viewing 8 posts - 1 through 8 (of 8 total)