Write a VB.NET program to create a player table (PID, PName, Game, no_of_matches). Insert records and update the number of matches of ‘Rohit Sharma’ and display the result in a DataGridView.
Answer: 1. Creating the Player Table in SQL Server sqlCopyCREATE TABLE Player ( PID INT PRIMARY KEY IDENTITY(1,1), PName VARCHAR(100), […]