shiningsoulstrust

Shining Souls (Trust) proudly stands as the top NGO in India, a nationally acclaimed non-profit non-governmental organisation (NGO) officially registered under the India Trust Act, 1882, with its headquarters situated in the vibrant city of New Delhi. Our transformative journey began in 2018, propelled by a singular vision to usher in holistic rural development and empower underprivileged communities. Our dedicated team, comprised of educationalists, social activists, and youth visionaries, has united with a shared purpose to create positive societal change.

Business Name: Shining Souls (Trust) | Best NGO in India
Address: 312, 3rd Floor, Veer Savarkar Block, Vikas Marg, Shakarpur, Delhi-92
Phone Number: 7562020200

It seems we can’t find what you’re looking for. Perhaps searching can help.

Blogs

AI: Blog a Day – Day 4: Transformers – Encoder, Decoder, and Attention

By

Continuing from Day 3 where we covered LLM models open/closed and their parameters, Today...

Flyway Tips: Multiple Projects

By

One of the nice things about Flyway Desktop is that it helps you manage...

What DevOps Look Like in Microsoft Fabric

By

Microsoft Fabric (not to be confused with the more general term “fabric” in DevOps)...

Read the latest Blogs

Forums

Can an Azure App Service Managed Identity be used for SQL Login?

By jasona.work

I'm fairly certain I know the answer to this from digging into it yesterday,...

Azure Synapse database refresh

By Sreevathsa Mandli

Hi Team, I am trying to refresh the Azure Synapse Dedicated pool from production...

how to write this query?

By water490

hi everyone I am not sure how to write the query that will produce...

Visit the forum

Question of the Day

Fun with JSON I

I have some data in a table:

CREATE TABLE #test_data
(
    id INT PRIMARY KEY,
    name VARCHAR(100),
    birth_date DATE
);

-- Step 2: Insert rows  
INSERT INTO #test_data
VALUES
(1, 'Olivia', '2025-01-05'),
(2, 'Emma', '2025-03-02'),
(3, 'Liam', '2025-11-15'),
(4, 'Noah', '2025-12-22');
If I run this query, how many rows are returned?
SELECT *
FROM OPENJSON(
     (
         SELECT t.* FROM #test_data AS t FOR JSON PATH
     )
             ) t;

See possible answers