- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
select
(select name from dbo.Product where ID = @id) as name,
(select sh_name from dbo.Product where ID = @id) as sh_name,
(select type from dbo.Product where ID = @id) as type,
(select description from dbo.Product where ID = @id) as description,
(select count(*) from dbo.ProductSales ps join dbo.Product p on p.ID=ps.ID_PRODUCT where ID = @id) as product_sales
..............
и т.д.
думаю смысл понятен)
nihau 08.02.2016 16:57 # 0
Onimys 08.02.2016 17:13 # 0
http://antropogenez.ru/uploads/tx_fossils/Australopithecus_afarensis3.jpg
Dummy00001 08.02.2016 19:48 # +2
Lokich 09.02.2016 17:56 # +1
просто, _что-то_ мне подсказывает, что в данной таблице нет такого понятия как первичный ключ, и если чуточку постараться, то можно вставить продукт с таким же ID
-A- 24.08.2021 20:44 # 0