SQL Create Table
The SQL CREATE TABLE statement is used to create a table on the databse. If you want to create a table, you have to name the table and define its column and the data type for each column. Syntax CREATE TABLE tablename ( column-1 datatype, column-2 datatype, column-3 datatype, .... ); The column parameters specify the names of the table columns. The data type parameter specifies the type of dataโฆ
View On WordPress















