Sql command
Sql command
Eg,
The above statement will create a database with the name student.
Eg,
The above statement will create a database table named student with two column SN and Fname. The
number of column can be increased accordingly.
Eg,
This statement will delete database named student from the SQL server.
Eg,
This statement will delete database table named student from the SQL server.
Eg:
This statement will select all the columns from the database table named student.
Eg,
The above statement will insert 3 and Ram into the database table named student.
Eg,
This statement will delete all the records from the student table where the Fname value is 'Ram'.
Eg,