Given the table created using:
CREATE TABLE tbl_Country
(
CountryId INT NOT NULL AUTO_INCREMENT,
IsDeleted bit,
PRIMARY KEY (CountryId)
)
How can I delete the column IsDeleted
?
转载于:https://stackoverflow.com/questions/13968494/how-to-delete-a-column-from-a-table-in-mysql