K
K
klarabro2017-08-29 12:01:20
MySQL
klarabro, 2017-08-29 12:01:20

How to pass table datatype to GO?

Well, actually the whole point of the question is in the title. The following type was created in sqlserver:
DECLARE @event_type CHAR(4) = 'EVNT',
@param_name CHAR(4) = 'PRNM',
@param_value VARCHAR(100) = 'param value'
DECLARE @evt_params dbo.EventParams
INSERT INTO @evt_params
(
event_type,
param_name,
param_value
)
SELECT @event_type,
@param_name,
@param_value
How to pass it to the storage?=)
2807e05039dc44c3a6c74160f1b2a00a.png

Answer the question

In order to leave comments, you need to log in

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question