Home  >  Article  >  Database  >  Source code courseware sharing of Han Shunping's MySQL basic video tutorial

Source code courseware sharing of Han Shunping's MySQL basic video tutorial

黄舟
黄舟Original
2017-08-29 14:55:322946browse

In the course "Han Shunping's 2016 Latest MySQL Basics Video Tutorial", the basic knowledge of MySQL will be explained so that learners can fully understand mysql! Through basic Mysql learning, students can reach the following levels:

1. Master database concepts and related basic theories, be able to install and configure mysql database, and use the command line window to log in to the MYSQL database

2. Understand the three-tier structure of database server, database and table, master the installation, configuration and use of Mysql database, and be able to use Mysql database to design simple project tables

Recommended related mysql video tutorials: "mysql Tutorial

The content of this course specifically includes: database concepts and related basic theories, mysql database installation and configuration management, using the command line window to log in to the MYSQL database, database servers, and the three-tier structure of databases and tables. Create, view, delete databases, create tables, add, delete, modify and query table records, and introduce the commonly used data types of Mysql. And can complete Mysql database design examples.

Source code courseware sharing of Han Shunpings MySQL basic video tutorial

Course playback address: http://www.php.cn/course/444.html

The teacher’s teaching style:

The teacher’s lectures are vivid, witty, witty, and touching. A vivid metaphor is like the finishing touch, opening the door to wisdom for students; a well-placed humor brings a knowing smile to students, like drinking a glass of mellow wine, giving people aftertaste and nostalgia; a philosopher's aphorisms, cultural references Proverbs are interspersed from time to time in the narration, giving people thinking and warning.

The more difficult point in this video is the Mysql database operation instructions:

1. MySQL common commands

create database name; 创建数据库
use databasename; 选择数据库
drop database name 直接删除数据库,不提醒
show tables; 显示表
describe tablename; 表的详细描述
select 中加上distinct去除重复字段
mysqladmin drop databasename 删除数据库前,有提示。
显示当前mysql版本和当前日期
select version(),current_date;

2. Modify the root password in mysql:

shell>mysql -u root -p
mysql> update user set password=password(”xueok654123″) where user=’root’;
mysql> flush privileges //刷新数据库
mysql>use dbname; 打开数据库:
mysql>show databases; 显示所有数据库
mysql>show tables; 显示数据库mysql中所有的表:先use mysql;然后
mysql>describe user; 显示表mysql数据库中user表的列信息);

Here we also recommend downloading source code resources: http ://www.php.cn/course/444.html

The resources share video courseware and source code

The above is the detailed content of Source code courseware sharing of Han Shunping's MySQL basic video tutorial. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn