本文主要是介绍mysql使用手记,适合初学者,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
create database video_db();
select database();
use video_db();
show databases;
show tables;
%%创建视频类型表
create table tb_type
(
id int not null primary key,
typeId int not null unique,
typename varchar(12)
)
%%创建视频表
create table tb_video
(
id varchar(18) primary key,
typeId int not null,
title varchar(18) not null,
url varchar(18) not null,
description text,
createTime date not null,
CONSTRAINT tb_video_fk_typeId FOREIGN KEY (typeId) REFERENCES tb_type
(typeId)
)
%%创建管理员表
create table tb_admin
(
userId varchar(14) not null primary key,
pwd varchar(32) not null,
lev int default 0
)
describe tb_video;
describe tb_admin;
describe tb_type;
LOAD DATA INFILE "D:/data.txt"
INTO TABLE tb_admin
FIELDS TERMINATED BY ',';
alter table tb_video modify url varchar(300),
modify title varchar(100);
这篇关于mysql使用手记,适合初学者的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!