{{theTime}}

Search This Blog

Total Pageviews

How to insert data and constants from one table to another table

INSERT INTO TABLE1 (COLUMN1,COLUMN2) SELECT TCOL, 'CONSTANT' FROM table2.

No comments:

Saga Design Pattern

The Saga design pattern is a way to manage distributed transactions in a microservices architecture. In a microservices environment, where d...