Skip to content

Instantly share code, notes, and snippets.

@rajeevgit8055hub
rajeevgit8055hub / SQL_D1.sql
Created November 3, 2025 09:55
♻️SQL/D1🛢️of the SQL Challenge
-- Title:
-- ♻️SQL/D1🛢️of the 21 Days SQL Challenge
-- Description:
-- This script contains the SQL queries and concepts covered in Day 1 of the IDC 21 Days SQL Challenge (Restarted).
-- It focuses on basic yet powerful SQL operations — using the SELECT statement to view and filter data, and the DISTINCT keyword to find unique values in a dataset.
-- Key Learnings:
@rajeevgit8055hub
rajeevgit8055hub / VBA.xlsm
Last active October 31, 2025 15:58
Variable & Data Type
Sub Start()
'Variable Declaration
Dim StudentName As String
Dim ClassNo As Integer
Dim Age As Integer
Dim Fees As Long
Dim Discount As Double
Dim CGPA As Variant ' Decimal Value
@rajeevgit8055hub
rajeevgit8055hub / VBA.vb
Last active October 31, 2025 16:09
My first VBA code
SUb Start()
Range("A5").Select
Selection.Value = "GitHub"
End Sub