S
S
Svet Valentin2016-03-24 17:46:13
Business Informatics
Svet Valentin, 2016-03-24 17:46:13

What is the hierarchy in a web studio company?

Hello, help me create a hierarchy for a web studio company
Needed for term paper
Preferably by the type of scheme: link
but specifically for a studio from 2016)

Answer the question

In order to leave comments, you need to log in

5 answer(s)
K
khipster, 2016-03-24
@khipster

From such an abundance of leaders involuntarily remembered macode.ru

P
Puma Thailand, 2016-03-24
@opium

well, this is your term paper, how do we know the hierarchy of your studio in your head.

M
mletov, 2017-02-20
@mletov

You would at least indicate the approximate number.
For example, there are very small web studios: a web designer, a CMS coder, a client manager, a content manager. Some of them are also a part-time general director, and the accounting department is remote.
And there are huge web studios, a large IT department headed by the director, who has programmers in various areas, system administrators, etc. Separately, designers are subordinate to the art director.
Sales department, SEOs, advertisers. Separately, accounting under the leadership of the chief accountant. I'm not talking about cleaners, watchmen, plumbers

D
Dmitry Entelis, 2015-02-01
@DmitriyEntelis

1) convert date to DATE! no options at all
2)

select
price.*, tovar.tovar_name
from price
join tovar on tovar.tovar_id = price.tovar_id
where price.date = (select MAX(price2.date) from price as price2 where price2.tovar_id=price.tovar_id )
order by price.price

Without a subquery, I can't think of one right off the bat.
but in any case, this is a perversion and a very slow request, get yourself another plate where the current price is stored.

A
Alexey Shein, 2015-02-01
@conf

SELECT p.*, t.tovar_name
FROM price p
INNER JOIN tovar t ON t.id = p.tovar_id
INNER JOIN (SELECT id, MAX(date) AS max_date FROM price GROUP BY tovar_id) AS max_price ON max_price.id = p.id AND max_price.max_date = p.date
ORDER BY p.price

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question