- 1
- 2
- 3
public override bool TrueOrFalse(obj: object) {
...
}
Нашли или выдавили из себя код, который нельзя назвать нормальным, на который без улыбки не взглянешь? Не торопитесь его удалять или рефакторить, — запостите его на говнокод.ру, посмеёмся вместе!
Всего: 4
−19
public override bool TrueOrFalse(obj: object) {
...
}
Так вот ты какой - коД Шрёдингера
−682
CREATE FUNCTION this_function_check_first_payment_under_agreement_without_previous_periods
(
....
Ну вот сразу всё понятно)
−50
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
..............
и т.д.
думаю смысл понятен)
Офигенный способ выбора данных из таблиц(ы). Да-да Sql бывает и таким :)
−50
update t set
t.[TYPE] = @type
from dbo.ITEM t
where @id = t.ID
update t set
t.NAME = @name
from dbo.ITEM t
where @id = t.ID
update t set
q.CATEGORY = @category
from dbo.ITEM t
where @id = t.ID
update t set
t.[COUNT] = @count
from dbo.ITEM t
where @id = t.ID
update t set
t.SUMMA = @summa_cost
from dbo.ITEM t
where @id = t.ID
...
и так далее полотно для 40 полей)))
Представляю Вам ХП по обновлению полей таблицы. Вот это реализация =)