This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| -- 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: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| SUb Start() | |
| Range("A5").Select | |
| Selection.Value = "GitHub" | |
| End Sub |