mysql 在windows下的安装,开发基础与要点_MySQL
1:安装(windows下)
官网下载.msi文件
运行安装时只需要安装server就行了
在环境变量中配置到bin目录:e.g:C:\programFile\...mysql\bin
完成后进入windows shell输入net strata mysql56(56为版本号)会提示“请求的服务已开启”or“正在启动....”即是表明配置成功了
2:切记每段SQL语句都以 “ ; ” 结尾!
3:注释
#..... or --............... or COMMENT '......'
4:技巧:shell中键盘的上下键可以调用之前/后输入过的命令
5:一般操作:
mysql -uroot -p; :u后面填写自己的用户名
show databases; :查看有哪些已经存在的数据库
use 数据库名; :打开一个已近存在的数据库
show tables; :查看当前数据库下有的表
退出:quit/exit

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

PHP is a widely used open source server-side scripting language that can handle all tasks in web development. PHP is widely used in web development, especially for its excellent performance in dynamic data processing, so it is loved and used by many developers. In this article, we will explain the basics of PHP step by step to help beginners from getting started to becoming proficient. 1. Basic syntax PHP is an interpreted language whose code is similar to HTML, CSS and JavaScript. Every PHP statement ends with a semicolon; Note

Key Points to Learn Golang Asynchronous Programming In modern software development, asynchronous programming has become more and more important because it can improve the performance and responsiveness of the program. As an efficient programming language, Golang also provides a wealth of tools and features to support asynchronous programming. This article will introduce the key points of learning Golang asynchronous programming and provide specific code examples. 1.Goroutine In Golang, Goroutine is the key element to achieve asynchronous programming. Gorouti

Go language is a statically typed, compiled language developed by Google. Its concise and efficient features have attracted widespread attention and love from developers. In the process of learning the Go language, mastering the basic knowledge of variables is a crucial step. This article will explain basic knowledge such as the definition, assignment, and type inference of variables in the Go language through specific code examples to help readers better understand and master these knowledge points. In the Go language, you can use the keyword var to define a variable, which is the format of the var variable name variable type.

Basic introduction to PHP: How to use the echo function to output text content. In PHP programming, you often need to output some text content to a web page. In this case, you can use the echo function. This article will introduce how to use the echo function to output text content and provide some sample code. Before starting, first make sure you have installed PHP and configured the running environment. If PHP is not installed yet, you can download the latest stable version from the PHP official website (https://www.php.net).

No matter in life or work, we often celebrate various festivals together. At this time, our organizers usually prepare a holiday-themed ppt. So how should we complete the Dragon Boat Festival ppt if we want to make it? Let’s discuss the basic outline and key points of making a Dragon Boat Festival ppt! 1. For general festival ppts, we must first introduce the festival, including the source of allusions, related poems, customary activities, and the evolution of contemporary culture, etc. We usually divide it into several ppts to complete these general parts. After determining the general content structure, we can choose a suitable background, such as the theme of the Dragon Boat Festival, including elements such as Qu Yuan, dragon boats, and rice dumplings. 3. Then we can insert some melodious background music. The Dragon Boat Festival is a commemorative festival. The background

C language function encyclopedia: from basic to advanced, detailed explanation of how to use functions, specific code examples are required Introduction: C language is a widely used programming language, and its powerful functions and flexibility make it the first choice of many developers. In C language, function is an important concept. It can combine a piece of code into an independent module, improving the reusability and maintainability of the code. This article will introduce the use of C language functions from the basics and gradually advance to help readers master the skills of function writing. 1. Definition and calling of functions in C

Calling all C# developers! Microsoft and non-profit organization freeCodeCamp announce the launch of a new global free Basic C# certification. This certification is designed to help developers of all levels learn the basics of C#, a popular programming language used to create a variety of applications, and you can display it in your LinkedIn profile. This certification includes 35 hours of Microsoft Learn training courses and an 80-question exam hosted on freeCodeCamp. This course covers topics such as variables, data types, control structures, and object-oriented programming. “Our Basic C# certification provides just that – proof of your ability to master this versatile

PHP is a widely used server-side scripting language used to develop dynamic websites, web applications, and other Internet services. In the process of developing PHP applications, using functions can help simplify code, improve code reusability, and reduce development costs. This article will introduce the basic usage and advanced usage of PHP functions. 1. Basic usage of PHP functions 1. Define functions In PHP, use the function keyword to define functions, for example: functiongreet($name){
