I would like to create a table in SQL and wanted to confirm if I am creating the values properly. I need to create an integer column and a binary column. The Binary column will only have 0 for False and 1 for True. Here is my MS SQL code:
CREATE TABLE ENTRY(
`number` INT NOT NULL,
`bin_variable` BINARY NOT NULL);
INSERT INTO ENTRY (number, bin_variable)
VALUES
(5, 0),
(10, 1);
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…