Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
CREATE TABLE CategoryList (
Category varchar(50) NOT NULL
)
--here it is
ALTER TABLE CategoryList ADD Column2 int NULL
INSERT INTO CategoryList VALUES ('Test Category',NULL)
INSERT INTO CategoryList VALUES ('Test Category',123)
select * from CategoryList