MySQL数据库的基本知识大全
以下的文章主要介绍的是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>
数据类型 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>
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>
分页 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>
日期处理
获取当前日期 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>
以上的相关内容就是对MySQL数据库知识的介绍,望你能有所收获。

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

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.

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 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.

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.

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.

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

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

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
