Skip to content

BIGINT

CREATE TABLE Employees (
ID BIGINT,
Name VARCHAR(100)
);
INSERT INTO Employees(ID, Name)
VALUES (12345678901234, 'John Doe');
Query OK, 1 row affected (0.01 sec)

In the provided example, a table named ‘Employees’ is created with two columns: ID and Name. The ID column is declared with BIGINT data type to store large integer values. A new row has been inserted into this table with an ID value of 12345678901234, illustrating the use of BIGINT for large integers.