Help to create such a sql query - List the names of languages, with the exception of those developed first or last (set using the parameter) alphabetically by the company. The database structure is as follows:
N | ТИП | ЯЗЫК | ФИРМА
My query was the following:
SELECT lang FROM table WHERE lang NOT IN (SELECT lang FROM table WHERE company ??? ORDER BY company ASC);