Search
 
SCRIPT & CODE EXAMPLE
 

SQL

alter table delete column

ALTER TABLE "table_name" DROP "column_name";
Comment

how to delete columns in sql

ALTER TABLE tableName
DROP COLUMN columnName;
Comment

sql delete column

Deletes a column from a table.
Example: Removes the first_name column from the users table.
ALTER TABLE users
DROP COLUMN first_name
Comment

PREVIOUS NEXT
Code Example
Sql :: 11:04:35 PM [mysql] Error: MySQL shutdown unexpectedly. 11:04:35 PM [mysql] This may be due to a blocked port, missing dependencies, 
Sql :: get count of null in column sql 
Sql :: how to remove unique key in mysql 
Sql :: update trigger 
Sql :: mysql ilike 
Sql :: mysql create procedure phpmyadmin 
Sql :: tinydb add table 
Sql :: user_dependencies 
Sql :: insert into values select 
Sql :: sql with example 
Sql :: sql alter table order by 
Sql :: htaccess allow index 
Sql :: sql having clause 
Sql :: mysql max 
Sql :: alter table add foreign key mariadb example 
Sql :: creating table in mysql 
Sql :: oracle concat datetime 
Sql :: postgresql must appear in the GROUP BY clause or be used in an aggregate function 
Sql :: mysql add columns 
Sql :: oracle sql for each row 
Sql :: how to declare a variable in sql 
Sql :: ms sql server port 
Sql :: postgres get number of days between two dates 
Sql :: update select mysql 
Sql :: sql update 
Sql :: smallint sql 
Sql :: check if word is in column sql 
Sql :: postgresql create table as select 
Sql :: execut sql python 
Sql :: how to get the maximum length of a name in sql 
ADD CONTENT
Topic
Content
Source link
Name
9+1 =