xxxxxxxxxx
-- Create table with a BIGINT column
CREATE TABLE my_table (
id BIGINT,
name VARCHAR(50)
);
-- Insert data into the table
INSERT INTO my_table (id, name)
VALUES
(100000000000000, 'John'),
(200000000000000, 'Emily');
-- Fetch data from the table
SELECT * FROM my_table;