Blogger Information
Blog 25
fans 0
comment 1
visits 21915
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
MYSQL基础总结(一)
潜轲的博客
Original
791 people have browsed it

前几天发布了sql语句的总结,今天总结复习一下mysql,sql语句不再赘述。

  1. MYSQL介绍

    核心:存储数据

  2. 数据种类介绍

    orcale,mysql,sqlsercer,db2,informix

  3. 使用命令行操作mysql


    1.cmd> net start mysql    -----    开启mysql服务

    2.cmd> net stop mysql    -----    关闭mysql服务  (没有重启)

    3.cmd>mysql -uroot -p 密码 -h 主机名/ip -P 端口号(默认3306) ------登录到mysql数据库

    4.mysql>\s可查看当前mysql的信息

  4. mysql三层结构描述

    1、表现层(UI):通俗讲就是展现给用户的界面,即用户在使用一个系统的时候他的所见所得。

    位于最外层(最上层),离用户最近。用于显示数据和接收用户输入的数据,为用户提供一种交互式操作的界面。
    2、业务逻辑层(BLL):针对具体问题的操作,也可以说是对数据层的操作,对数据业务逻辑处理。

    业务逻辑层(Business Logic Layer)无疑是系统架构中体现核心价值的部分。
    3、数据访问层(DAL):该层所做事务直接操作数据库,针对数据的增添、删除、修改、更新、查找等。

    有时候也称为是持久层,其功能主要是负责数据库的访问,可以访问数据库系统、二进制文件、文本文档或是XML文档。

    总结:

    即在表现层(客户端)输入指令,传入到业务逻辑层进行处理,处理完后,进入数据访问层,从数据库中提取数据。


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