{{theTime}}

Search This Blog

Total Pageviews

Stored Procedure to fetch all orders created today

CREATE PROCEDURE todays_orders
AS
BEGIN
SELECT * FROM order_table where  order_date = DATEADD(DAY,-1,GETDATE())
END

No comments:

Setup AWS Application Load Balancer Https

Setting up HTTPS for an AWS Application Load Balancer (ALB) involves configuring an HTTPS listener, deploying an SSL certificate, and defini...