user3277704
user3277704

Reputation: 15

How to consume the o/p of a procedure with result view in HANA

Is it possible to assign the o/p of a procedure, with result view, to a temp table in procedure. Please advise how can this be done. Thanks.

Upvotes: 0

Views: 650

Answers (1)

user3436428
user3436428

Reputation: 39

You can use

INSERT INTO temp_table
(SELECT * FROM view_name);

Upvotes: 1

Related Questions