2 how do I remove students' math 'column in the table,
A student table is as follows:
Student id name Chinese grades in math
CodePudding user response:
- 1. Delete the student table If object_id (' student table) is not null Students drop table table Go -- 2. Delete the student mathematics result column in the table IF COL_LENGTH (' students' table ', 'math') IS NOT NULL The ALTER TABLE students TABLE DROP COLUMN in mathGO