第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請及時(shí)綁定郵箱和手機(jī)立即綁定

mysql

標(biāo)簽:
MySQL

mysql
1、创建数据库(create database 数据库名)
2、查看数据库的有多少个 表用SHOW DATABASES
3、删除数据库(DROP DATABASE)
4、创建数据表CREATE TABLE 数据表(

)
5、查看数据表 show tables
6、desc student 查看表的基本信息
7、 show create table student 查看建表的语句
8、drop table student 删除表,不是删除表中数据,删除表中数据是用delete from student where
9、插入数据 INSERT into student VALUES()
10、DECIMAL可以有效防止浮点数丢失精度
11、text是不确定长度的字符串。
12、添加字段 alter table 表名
add 列名1 数据类型[约束][comment 注释],
add 列名2 数据类型[约束][comment 注释]
ALTER TABLE student
add address VARCHAR(200) not NULL,
add home_tel CHAR(11) not null

修改字段类型:
ALTER TABLE student
MODIFY home_tel VARCHAR(20) not null
修改字段名:
ALTER TABLE student CHANGE address home_address VARCHAR(200) not NULL
删除字段名:
ALTER TABLE student DROP home_address,
DROP home_tel

创建索引
create table 表名(
index (字段名)
)
添加索引
create index 索引名称 on 表名(字段)
show index from 表名
drop index 索引名称 on 表名

例如:
CREATE TABLE temp(
id int UNSIGNED PRIMARY key,
num DECIMAL(20,10));
drop database tb_teacher;
CREATE TABLE tb_teacher(
id int unsigned primary key auto_increment,
name varchar(20),
tel char(11) not null unique ,
married boolean not null default false
);
create table tb_dept(
deptno int unsigned primary key ,
dname varchar(20) not null unique ,
tel char(4) unique
);
create table tb_emp(
empno int unsigned primary key ,
ename varchar(20)not null ,
sex enum(“boy”,“girl”) not null ,
deptno int unsigned not null ,
hiredate date not null ,
foreign key tb_emp(deptno) references tb_dept(deptno)

);
create table tb_message(
id int unsigned primary key,
content varchar(200) not null,
type enum(‘note’) not null,
create_time timestamp not null,
index idx_type(type)
);
drop index idx_type on tb_message;
create index idx_type on tb_message(type);
show index from tb_message

點(diǎn)擊查看更多內(nèi)容
TA 點(diǎn)贊

若覺得本文不錯(cuò),就分享一下吧!

評(píng)論

作者其他優(yōu)質(zhì)文章

正在加載中
  • 推薦
  • 評(píng)論
  • 收藏
  • 共同學(xué)習(xí),寫下你的評(píng)論
感謝您的支持,我會(huì)繼續(xù)努力的~
掃碼打賞,你說多少就多少
贊賞金額會(huì)直接到老師賬戶
支付方式
打開微信掃一掃,即可進(jìn)行掃碼打賞哦
今天注冊有機(jī)會(huì)得

100積分直接送

付費(fèi)專欄免費(fèi)學(xué)

大額優(yōu)惠券免費(fèi)領(lǐng)

立即參與 放棄機(jī)會(huì)
微信客服

購課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)

舉報(bào)

0/150
提交
取消