1. Add fields: alter table table name ADD field name type; eg: alter table sys_cwzd ADD SCCLLJ VARCHAR2(50); 2. Add remarks: comment on column table name. Field name is 'remark name'; eg: comment on column sys_cwzd.SCCLLJ is 'Upload material path'; Content extension: Add a new field: alter table bulletin add citycode varchar(6) not null default 0; # city code 1. Set the encoding when creating the database create database test character set utf8; 2. Set the encoding when creating a table create table test(id int primary key)DEFAULT charset=utf8; 3. Modify the database encoding alter database test character set utf8; 4. Modify the default encoding of the table alter table test character set utf8; You may also be interested in:
|
<<: Detailed explanation of Vue's methods and properties
>>: CentOS 6 uses Docker to deploy Zookeeper operation example
var numA = 0.1; var numB = 0.2; alert( numA + num...
The pitfalls 1. Many tutorials on the Internet wr...
MyISAM, a commonly used storage engine in MySQL c...
Preface Recently, I have been helping clients con...
Dockerfile is a text file used to build an image....
Set the table's style="table-layout:fixed...
Overview of MySQL Partitioned Tables We often enc...
As a lightweight open source database, MySQL is w...
illustrate: VMware IOInsight is a tool that helps...
Library Operations Query 1.SHOW DATABASE; ----Que...
MySQL 5.7.18 free installation version installati...
HTML is a hybrid language used for publishing on ...
When I switched my primary operating system from ...
1. Docker cross-host communication Docker cross-h...
<br />The most common mistake made by many w...