Home Database Mysql Tutorial MySQL数据库的基本知识大全

MySQL数据库的基本知识大全

Jun 07, 2016 pm 04:14 PM
mysql main introduce basic knowledge Encyclopedia database article

以下的文章主要介绍的是MySQL数据库的基本知识,其中包括对MySQL数据库的创建,以及对一些相关的数据类型描述,其中还涉及到表的创建,以下就是文章的详细内容描述,望你会有所收获。 MySQL数据库安装 最好改变字符集UTF8 创建数据库 createdatabasemydata;

以下的文章主要介绍的是MySQL数据库的基本知识,其中包括对MySQL数据库的创建,以及对一些相关的数据类型描述,其中还涉及到表的创建,以下就是文章的详细内容描述,望你会有所收获。

MySQL数据库安装 最好改变字符集UTF8

创建数据库

<ol class="dp-xml">
<li class="alt"><span><span>create database mydata;  </span></span></li>
<li><span>use mydata; </span></li>
</ol>
Copy after login

数据类型 int double char varchar datetime longtext

创建表 create table dept

<ol class="dp-xml">
<li class="alt"><span><span>(  </span></span></li>
<li><span>deptno int primary key,  </span></li>
<li class="alt"><span>dname varchar(14),  </span></li>
<li><span>loc varchar(13)  </span></li>
<li class="alt"><span>);  </span></li>
<li class="alt"><span>create table emp  </span></li>
<li><span>(  </span></li>
<li class="alt"><span>empno int primary key,  </span></li>
<li><span>ename varchar(10),  </span></li>
<li class="alt"><span>job varchar(15),  </span></li>
<li><span>mgr int,  </span></li>
<li class="alt"><span>hiredate datetime,  </span></li>
<li><span>sal double,  </span></li>
<li class="alt"><span>deptno int,  </span></li>
<li><span>foreign key (deptno) references dept(deptno)  </span></li>
<li class="alt"><span>);  </span></li>
</ol>
Copy after login

MySQL数据库执行脚本文件.sql \. 文件路径 或 source 文件路径

sql文件中 -- 注释

MySQL管理软件 MySQL administrator,toad for MySQL

查看数据库 show databases;

查看表 show tables;

查看表结构 desc dept;

插入数据

<ol class="dp-xml">
<li class="alt"><span><span>intsert into dept values(1,'a','a');  </span></span></li>
<li><span>commit; </span></li>
</ol>
Copy after login

分页 select * from dept order by deptno desc limit 3,2; (从第三条往后数两条)

自增 create table article

<ol class="dp-xml">
<li class="alt"><span><span>(  </span></span></li>
<li><span>id int primary key auto_increment,  </span></li>
<li class="alt"><span>title vachar(255)  </span></li>
<li><span>);  </span></li>
<li class="alt"><span>insert into article values(null,'a');  </span></li>
<li><span>insert into article(title) values('c'); </span></li>
</ol>
Copy after login

日期处理

获取当前日期 select now();

转化字符串 select date_format(now(),'%Y-%m-%d %H:%i:%s');

<ol class="dp-xml">
<li class="alt"><span>jdbc连接MySQL  </span></li>
<li>
<span>Connection </span><span class="attribute">conn</span><span>=</span><span class="attribute-value">null</span><span>;  </span>
</li>
<li class="alt">
<span>Statement </span><span class="attribute">stmt</span><span>=</span><span class="attribute-value">null</span><span>;   </span>
</li>
<li>
<span>ResultSet </span><span class="attribute">rs</span><span>=</span><span class="attribute-value">null</span><span>;   </span>
</li>
<li class="alt"><span>try{   </span></li>
<li>
<span>Class.forName("com.</span>MySQL<span>.jdbc.Driver").newInstance();  </span>
</li>
<li class="alt">
<span class="attribute">conn</span><span>=</span><span class="attribute-value">DriverManager</span><span>.getConnection("jdbc:</span>MySQL<span>://localhost/test? </span><span class="attribute">user</span><span>=</span><span class="attribute-value">root</span><span>&</span><span class="attribute">password</span><span>=</span><span class="attribute-value">root</span><span>");  </span>
</li>
<li>
<span class="attribute">stmt</span><span>=</span><span class="attribute-value">conn</span><span>.createStatement();  </span>
</li>
<li class="alt">
<span class="attribute">rs</span><span> = </span><span class="attribute-value">stamt</span><span>.executeQuery(sql);  </span>
</li>
<li><span>}  </span></li>
<li class="alt"><span>catch(Exception e){}  </span></li>
<li><span>finally{  </span></li>
<li class="alt"><span>try{  </span></li>
<li>
<span>if(rs!=null){rs.close; </span><span class="attribute">rs</span><span>=</span><span class="attribute-value">null</span><span>;}  </span>
</li>
<li class="alt">
<span>if(stat!=null){stat.close; </span><span class="attribute">stat</span><span>=</span><span class="attribute-value">null</span><span>;}  </span>
</li>
<li>
<span>if(conn!=null){conn.close; </span><span class="attribute">conn</span><span>=</span><span class="attribute-value">null</span><span>;}  </span>
</li>
<li class="alt"><span>}  </span></li>
<li><span>catch(SQLException e){  </span></li>
<li class="alt"><span>e.printStackTrace();  </span></li>
<li><span>}  </span></li>
<li class="alt">
<span>}  </span><span> </span>
</li>
</ol>
Copy after login

以上的相关内容就是对MySQL数据库知识的介绍,望你能有所收获。


Statement of this Website
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

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

How to use MySQL backup and restore in PHP? How to use MySQL backup and restore in PHP? Jun 03, 2024 pm 12:19 PM

Backing up and restoring a MySQL database in PHP can be achieved by following these steps: Back up the database: Use the mysqldump command to dump the database into a SQL file. Restore database: Use the mysql command to restore the database from SQL files.

How to optimize MySQL query performance in PHP? How to optimize MySQL query performance in PHP? Jun 03, 2024 pm 08:11 PM

MySQL query performance can be optimized by building indexes that reduce lookup time from linear complexity to logarithmic complexity. Use PreparedStatements to prevent SQL injection and improve query performance. Limit query results and reduce the amount of data processed by the server. Optimize join queries, including using appropriate join types, creating indexes, and considering using subqueries. Analyze queries to identify bottlenecks; use caching to reduce database load; optimize PHP code to minimize overhead.

How to insert data into a MySQL table using PHP? How to insert data into a MySQL table using PHP? Jun 02, 2024 pm 02:26 PM

How to insert data into MySQL table? Connect to the database: Use mysqli to establish a connection to the database. Prepare the SQL query: Write an INSERT statement to specify the columns and values ​​to be inserted. Execute query: Use the query() method to execute the insertion query. If successful, a confirmation message will be output.

How to create a MySQL table using PHP? How to create a MySQL table using PHP? Jun 04, 2024 pm 01:57 PM

Creating a MySQL table using PHP requires the following steps: Connect to the database. Create the database if it does not exist. Select a database. Create table. Execute the query. Close the connection.

How to use MySQL stored procedures in PHP? How to use MySQL stored procedures in PHP? Jun 02, 2024 pm 02:13 PM

To use MySQL stored procedures in PHP: Use PDO or the MySQLi extension to connect to a MySQL database. Prepare the statement to call the stored procedure. Execute the stored procedure. Process the result set (if the stored procedure returns results). Close the database connection.

How to fix mysql_native_password not loaded errors on MySQL 8.4 How to fix mysql_native_password not loaded errors on MySQL 8.4 Dec 09, 2024 am 11:42 AM

One of the major changes introduced in MySQL 8.4 (the latest LTS release as of 2024) is that the &quot;MySQL Native Password&quot; plugin is no longer enabled by default. Further, MySQL 9.0 removes this plugin completely. This change affects PHP and other app

Detailed introduction of Samsung S24ai functions Detailed introduction of Samsung S24ai functions Jun 24, 2024 am 11:18 AM

2024 is the first year of AI mobile phones. More and more mobile phones integrate multiple AI functions. Empowered by AI smart technology, our mobile phones can be used more efficiently and conveniently. Recently, the Galaxy S24 series released at the beginning of the year has once again improved its generative AI experience. Let’s take a look at the detailed function introduction below. 1. Generative AI deeply empowers Samsung Galaxy S24 series, which is empowered by Galaxy AI and brings many intelligent applications. These functions are deeply integrated with Samsung One UI6.1, allowing users to have a convenient intelligent experience at any time, significantly improving the performance of mobile phones. Efficiency and convenience of use. The instant search function pioneered by the Galaxy S24 series is one of the highlights. Users only need to press and hold

iOS 18 adds a new 'Recovered' album function to retrieve lost or damaged photos iOS 18 adds a new 'Recovered' album function to retrieve lost or damaged photos Jul 18, 2024 am 05:48 AM

Apple's latest releases of iOS18, iPadOS18 and macOS Sequoia systems have added an important feature to the Photos application, designed to help users easily recover photos and videos lost or damaged due to various reasons. The new feature introduces an album called "Recovered" in the Tools section of the Photos app that will automatically appear when a user has pictures or videos on their device that are not part of their photo library. The emergence of the "Recovered" album provides a solution for photos and videos lost due to database corruption, the camera application not saving to the photo library correctly, or a third-party application managing the photo library. Users only need a few simple steps

See all articles