UPDATE requests
SET requests.title = "договор для АО",
requests.responsible = ISNULL((SELECT id
FROM users
WHERE username = "переменная с текстом"), requests.responsible),
requests.datecreate = "2018-09-18",
requests.percent = "0",
comment = "коммент",
status = ISNULL((SELECT id
FROM status
WHERE status = "переменная с текстом"), requests.status)
FROM requests
WHERE requests.id = 4
SELECT
sign(coalesce(location_id, 0)) + sign(coalesce(division_id, -1)) + sign(coalesce(position_id, -2)) as score, title
FROM
keyword
WHERE
city_id = $cityId AND
(division_id = $divisionId OR division_id IS NULL) AND
(position_id = $positionId OR division_id IS NULL) AND
(location_id = $locationId OR location_id IS NULL) AND
MATCH (keyword) AGAINST ('$keys')
GROUP BY
title
ORDER BY
score
DESC LIMIT 10
select t1.id
from table t1
where t1.my_column_4 = 'Polyps'
and t1.my_column_5 = 'normal'
and exists(select 1
from table t2
where t2.id = t1.id
and t2.Date > t1.Date
and t2.my_column_4 = 'CRC'
and t2.my_column_5 = 'Futher Procedure')
if exists(select 1
from chat_lastread
where `user_id` = #user_id
and `dialog_id` = #dialog_id)
begin
update chat_lastread
set `date` = NOW()
from chat_lastread
where `user_id` = #user_id
and `dialog_id` = #dialog_id
end
else
begin
INSERT INTO chat_lastread (
`user_id`,
`dialog_id`,
`date`
) VALUES(
#user_id,
#dialog_id,
NOW()
)
end
select dd.tovar_id, dd.sender_id
from dialogs dd
where not exists(select 1
from dialogs ds
where ds.tovar_id = dd.tovar_id
and ds.recipient_id = dd.dd.sender_id
and ds.id < dd.id)
group by dd.tovar_id, dd.sender_id