Blogger Information
Blog 21
fans 0
comment 0
visits 20140
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
MYSQL
电动机的博客
Original
928 people have browsed it

总结






一、数据库Mysql的连接,

二、数据库的增删查改:

INSERT INTO NAME(表中列名)  VALUES(与前面列名一至的值)

DELETE   FROM  (表名)  WHERE 条件(要删除的记录的条件)

SELECT  (列名)  FROM (表名) WHERE  (要查询的记录的条件)

UPDATE 表名 SET  列名=VALUES WHERE (要更新的记录的条件)



 实例

/*
Navicat MySQL Data Transfer

Source Server         : mysql
Source Server Version : 50553
Source Host           : 127.0.0.1:3308
Source Database       : students

Target Server Type    : MYSQL
Target Server Version : 50553
File Encoding         : 65001

Date: 2019-03-21 08:25:01
*/

SET FOREIGN_KEY_CHECKS=0;

-- ----------------------------
-- Table structure for user
-- ----------------------------
DROP TABLE IF EXISTS `user`;
CREATE TABLE `user` (
  `id` smallint(4) NOT NULL AUTO_INCREMENT,
  `name` varchar(50) NOT NULL DEFAULT '',
  `sex` char(10) NOT NULL DEFAULT '',
  `age` int(3) NOT NULL DEFAULT '10',
  `grade` varchar(20) NOT NULL,
  `techer` varchar(50) NOT NULL,
  `father` varchar(50) NOT NULL,
  `mother` varchar(50) NOT NULL,
  `mobilphone` int(11) NOT NULL,
  `address` varchar(255) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

运行实例 »

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

Correction status:qualified

Teacher's comments:
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