Blogger Information
Blog 34
fans 0
comment 0
visits 39089
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
php基础及数据库——五期线上培训——2019-3-20
黄健的博客
Original
550 people have browsed it

今天学习了数据库:

    数据库的基本操作,curd操作。多种查询操作

    

作业:

实例

CREATE DATABASE test2;
USE test2;

CREATE TABLE student (
	id INT PRIMARY KEY AUTO_INCREMENT, 
	sname VARCHAR(10) NOT NULL,
	sage INT(5) NOT NULL,
	ssex CHAR(1) NOT NULL,
	sno INT (10) NOT NULL,
	saddr VARCHAR(255) NOT NULL,
	slevel VARCHAR(10) NOT NULL,
	sroom VARCHAR(10) NOT NULL,
	spro VARCHAR(20) NOT NULL,
	snickname VARCHAR(30) NOT NULL
	
)

运行实例 »

点击 "运行实例" 按钮查看在线实例


Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post