getting error while adding multiple coloumns in a table
ALTER TABLE only allows columns to be added that can contain nulls, or have a DEFAULT definition specified, or the column being added is an identity or timestamp column, or alternatively if none of the previous conditions are satisfied the table must be empty to allow addition of this column. Column 'Country' cannot be added to non-empty table 'tbl_alerts' because it does not satisfy these conditions.
Here is my alter table
statement
ALTER TABLE tbl_alerts
ADD
Country [varchar](50) NOT NULL,
StateName [varchar](50) NOT NULL,
City [varchar](50) NOT NULL,
MacAddress [varchar](50) NOT NULL,
OSDetails [varchar](50) NOT NULL,
MachineName [varchar](50) NOT NULL,
Browser [varchar](50) NOT NULL