Mysql Query:
Alter table table_name drop column column_name
Alter table table1 drop column Image
Consider the example:
table1 is name of this table.
table1 is name of this table.
Suppose you've to delete the column 'Image'. The mysql query is:
Now your table look like this:
Now the column name 'Image' is deleted from your mysql table.
Deleting the multiple column at the time in mysql:
You can delete multiple column at a time in mysql. The mysql query as follow as:
Mysql Query:
Alter table table1
drop column Game_name,
drop column Image
Now your output look like this:
Now you will get your mysql table with only column 'No'.
Related Post:
Add column after specific field in mysql
Change column name in mysql
Change column size in mysql table
Change column size in mysql table
Change column datatype in mysql
Change table name in mysql
Change column NOT NULL to NULL in mysql
Add primary key to existing column in mysql
how to add auto increment to existing column in mysql
How to remove auto increment from column in mysql
Change column name in mysql
Change column size in mysql table
Change column size in mysql table
Change column datatype in mysql
Change table name in mysql
Change column NOT NULL to NULL in mysql
Add primary key to existing column in mysql
how to add auto increment to existing column in mysql
How to remove auto increment from column in mysql
No comments:
Post a Comment