Skip to main content

Posts

Showing posts from August, 2025

SQL for Data analysis

 Create Database Test1;  Use Test1; ////////////////////// Use Test1; Create Table studentsData; Create table students(Roll_No INT(2) , Name Char(100) , Grade Char(1)); select * from students;