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 drop column

ALTER TABLE my_schema.my_table DROP COLUMN my_column;
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 :: ALL_TAB_PARTITIONS 
Sql :: return sql query laravel 
Sql :: mysql int range 
Sql :: mysql drop trigger 
Sql :: select sql in descending order 
Sql :: mysql error codeigniter 
Sql :: apex add months to date 
Sql :: mysql default port 
Sql :: différence entre deux dates sql oracle 
Sql :: postgresql group by month and year 
Sql :: asp.net core with postgresql deploy on ubuntu 
Sql :: How to View column names of a table in SQL 
Sql :: SQL query to convert DD/MM/YYYY to YYYY-MM-DD 
Sql :: postgresql where datetrunc month and year equal 
Sql :: postgres convert text to number 
Sql :: mysql round 
Sql :: create mysql user on all hosts 
Sql :: oracle list privileges 
Sql :: oracle sql create view 
Sql :: sql server cannot create database diagram 
Sql :: org.h2.jdbc.JdbcSQLSyntaxErrorException 
Sql :: stop and start mysql 
Sql :: uppercase and lowercase in sql 
Sql :: pgAdmin - Please correct the Binary Path 
Sql :: sql delete join 
Sql :: sql add column int nullable 
Sql :: datepart postgres 
Sql :: mysql create database with collation 
Sql :: postgres select max value 
Sql :: how to fetch first 5 characters in sql 
ADD CONTENT
Topic
Content
Source link
Name
3+5 =