CREATE TABLE Persons (
PersonID INT NOT NULL AUTO_INCREMENT PRIMARY KEY,
LastName VARCHAR(255),
FirstName VARCHAR(255),
Address VARCHAR(255),
Number INT NOT NULL
);
CREATE TABLE table_name(
id INT AUTO_INCREMENT PRIMARY KEY,
name VARCHAR(255), # String 255 chars max
date DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP,
longtext BLOB
);
//to create a table
CREATE TABLE students
( student_id number(4) primary key,
last_name varchar2(30) NOT NULL,
course_id number(4) NULL );
//to insert value
INSERT INTO students VALUES (200, 'Jones', 101);
INSERT INTO students VALUES (201, 'Smith', 101);
INSERT INTO students VALUE (202, 'Lee' , 102);
//to create a table
CREATE TABLE students
( student_id number(4) primary key,
last_name varchar2(30) NOT NULL,
course_id number(4) NULL );
//to insert value
INSERT INTO students VALUES (200, 'Jones', 101);
INSERT INTO students VALUES (201, 'Smith', 101);
INSERT INTO students VALUE (202, 'Lee' , 102);
--Syntax for MySQL
CREATE TABLE Persons (
Personid int NOT NULL AUTO_INCREMENT,
LastName varchar(255) NOT NULL,
FirstName varchar(255),
Age int,
PRIMARY KEY (Personid)
);
-- Syntax for SQL Server
CREATE TABLE Persons (
Personid int IDENTITY(1,1) PRIMARY KEY,
LastName varchar(255) NOT NULL,
FirstName varchar(255),
Age int
);
#create a table and name it
CREATE TABLE test_name(
#create some vars in the table like id, name, age and etc.
id INT NOT NULL,
name VARCHAR,
age FLOAT NOT NULL
PRIMARY KEY(id) #define the primary key of the table(primary key is a var that will never be the same in each column in the table it will be "unique" rise up for each column
);
Creates a new table .
Example: Creates a new table called ‘users’ in the ‘websitesetup’ database.
CREATE TABLE users (
id int,
first_name varchar(255),
surname varchar(255),
address varchar(255),
contact_number int
);