Replies
Welcome, guest
Join CrazyEngineers to reply, ask questions, and participate in conversations.
CrazyEngineers powered by Jatra Community Platform
-
@thebigk • Apr 11, 2015
Right click on the column and select 'Delete'. It's very easy.Naresh ArshI have small query please give me solution for this.
my query is i want to delete a column from a table . -
@prasad-aSUfhP • Apr 14, 2015
-
@neeraj-iAaNcG • Apr 18, 2015
## Dropping one columnNaresh ArshI have small query please give me solution for this.
my query is i want to delete a column from a table .
ALTER TABLE table_name DROP COLUMN column_name;
##Dropping multiple columns
ALTER TABLE table_name DROP COLUMN (column_name1, column_name2,...); -
@thebigk • Apr 18, 2015
Too many assumptions here, right? 😁 -
@neeraj-iAaNcG • Apr 18, 2015
I didn't get you.. 😨Kaustubh KatdareToo many assumptions here, right? 😁 -
@thebigk • Apr 18, 2015
The original question does not talk about deleting a column from mysql database or excel or an HTML table. 😀 I just wish people could ask questions without making assumptions.Neeraj SharmaI didn't get you.. 😨 -
@vishal-pysGmK • Apr 18, 2015
We should probably wait for the #-Link-Snipped-# to return and clarify that. But i'm sure its not an excel table column or word table column 😁 And the right click, delete doesn't workout on HTML 😛Kaustubh KatdareThe original question does not talk about deleting a column from mysql database or excel or an HTML table. 😀 I just wish people could ask questions without making assumptions. -
@rahulkumar200-AzMcLQ • Apr 27, 2015
-
@rahulkumar200-AzMcLQ • Apr 27, 2015
And if you wanna !"add some columns"! try this
ALTER TABLE table_name
ADD column_name column-definition; -
@vishal-pysGmK • Apr 27, 2015
already answered by #-Link-Snipped-#Rahulkumar200Try this
ALTER TABLE table_name
DROP COLUMN column_name;