select
'insert into table (f1,f2,f3) values ('+f1','+f2+','+f3+')'
from ... -- и тут любые соединения, агрегации и т.п.
domain: MEBELEO.RU
nserver: ns1.sprinthost.ru.
nserver: ns2.sprinthost.ru.
nserver: ns3.sprinthost.net.
nserver: ns4.sprinthost.net.
state: REGISTERED, DELEGATED, UNVERIFIED
person: Private Person
registrar: REGRU-RU
admin-contact: www.reg.ru/whois/admin_contact
created: 2009-09-14T20:00:00Z
paid-till: 2023-09-14T21:00:00Z
free-date: 2023-10-16
source: TCI
Last updated on 2023-05-24T17:31:31Z
ИНФОРМАЦИЯ ПО ТОВАРНОМУ ЗНАКУ РФ — MEBELIO (№428699)
MEBELIO
Номер и дата подачи заявки:
2009728305 10.11.2009
Номер свидетельства:
428699
The EXPOSE instruction informs Docker that the container listens on the specified network ports at runtime. You can specify whether the port listens on TCP or UDP, and the default is TCP if the protocol is not specified.
The EXPOSE instruction does not actually publish the port. It functions as a type of documentation between the person who builds the image and the person who runs the container, about which ports are intended to be published. To actually publish the port when running the container, use the -p flag on docker run to publish and map one or more ports, or the -P flag to publish all exposed ports and map them to high-order ports.
By default, EXPOSE assumes TCP. You can also specify UDP: