Search
 
SCRIPT & CODE EXAMPLE
 

SQL

how to increase size of column in sql

ALTER TABLE table_name
MODIFY column_name
varchar(new_length);
Comment

how to increase size of column in sql

// for oracle verison 10 or before
ALTER TABLE table_name 
ALTER COLUMN column_name new_data_type(size);
Code language: SQL (Structured Query Language) (sql)
Comment

how to increase size of column in sql


         CREATE TABLE t2 (c VARCHAR(10));
Code language: SQL (Structured Query Language) (sql)
Comment

PREVIOUS NEXT
Code Example
Sql :: start mysql server by terminal in linux 
Sql :: mac xampp mysql not starting 
Sql :: alter user password postgres 
Sql :: query to find table size in oracle 12c 
Sql :: sql server version query 
Sql :: import sql file from laravel 
Sql :: postgresql truncate cascade restart identity 
Sql :: mysql users and privileges list 
Sql :: rename column oracle 
Sql :: show indexes in mql 
Sql :: sql several or 
Sql :: oracle sql drop index 
Sql :: rename column postgres 
Sql :: sql server get timezone 
Sql :: mysql concatenate two columns into one 
Sql :: Job for mysql.service failed because the control process exited with error code. See "systemctl status mysql.service" and "journalctl -xe" for details. 
Sql :: oracle list dblink 
Sql :: mysql dump database command line linux 
Sql :: MySQL - Enabling the Event Scheduler 
Sql :: how to get non distinct values in sql 
Sql :: how to check data type in sql server 
Sql :: install mysql powershell 
Sql :: oracle delete last row 
Sql :: mysql id reset 
Sql :: mysql date - 1 day 
Sql :: check message id sql server 
Sql :: mac os zsh: command not found: mysql 
Sql :: grant all privileges mysql 8.0.21 
Sql :: group by mysql and concatenate string 
Sql :: xampp mysql database server is not starting mac m1 
ADD CONTENT
Topic
Content
Source link
Name
1+5 =