The CREATE TABLE statement in SQL is used to define a new structured data storage entity within a database. It specifies a set of named fields (also called columns), each with a defined data type, and ...
Some of The Most Important SQL Commands SELECT - extracts data from a database UPDATE - updates data in a database DELETE - deletes data from a database INSERT INTO - inserts new data into a database ...
-- The 'GPA' column is defined as a DECIMAL data type with a precision of 3 digits and a scale of 2 decimal places.