MySQL learning notes 1
Operation database
Operation database
Several basic database operation commands:
update user set password=password('123456')where user='root'; Change Password
flush privileges; Refresh database
show databases; Show all databases
use dbnameοΌOpen a database
show tables; show database mysql All tables in
describe user; Display table mysql ...
Added by shibobo12 on Thu, 10 Feb 2022 06:31:44 +0200
Deployment of pure domestic environment (Galaxy Kirin + Feiteng) JAVA program (Springboot + Mybatis + Damon database)
JAVA program deployment
preface
Operating environment: Galaxy Kirin + Feiteng CPU Project framework: Springboot + Mybatis + Dameng database jdk1 eight
The last one wrote the source code of the project, and this one mainly wrote the deployment of the project on the domestic operating system and the installation and creation of Dameng data ...
Added by Pezmc on Wed, 09 Feb 2022 21:50:13 +0200
CentOS 7.6 single node installation openGuess 2.0
1, Environmental preparation before installation
1. Operating system: CentOS 7.6 (virtual machine, IP: 192.168.172.151)
(1) Operating system turn off firewall:
[root@local151 ~]# systemctl stop firewalld.service
[root@local151 ~]# systemctl disable firewalld.service
[root@local151 ~]# systemctl status firewalld.service
β firewalld.service - ...
Added by siwelis on Wed, 09 Feb 2022 20:22:11 +0200
Explain and index best practice
1, Explain tool introduction
Use the EXPLAIN keyword to simulate the optimizer to execute SQL statements and analyze the performance bottlenecks of your query statements or structures
Add the explain keyword before the select statement. MySQL will set a flag on the query. Executing the query will return the information of the execution plan i ...
Added by cyanblue on Wed, 09 Feb 2022 17:59:09 +0200
Introduction to Linux emergency response: intrusion troubleshooting should do this
Account security: 1,User information file /etc/passwd
# Format: account:password:UID:GID:GECOS:directory:shell
# User name: Password: user ID: group ID: user description: Home Directory: shell after login
root:x:::root:/root:/bin/bash
# View logged in users:
cat /etc/passwd | grep /bin/bash
# View users with UID=0
awk -F: '$3==0{print $1}' / ...
Added by JamesThePanda on Wed, 09 Feb 2022 16:53:51 +0200
New Oracle database instance without Linux interface
New Oracle database instance without Linux interface
according to https://blog.csdn.net/qq_24058757/article/details/88220437 Summarize and sort out your own new instance process after step operation
Memory check
Check the memory. There should be no problem. If the memory is small, pay attention to the mounting
[oracle@oracledb ~]$ grep -i m ...
Added by Flames on Wed, 09 Feb 2022 13:29:07 +0200
MySQL special system induction and quick start (common cmd commands, common function summary, SQL statement elaboration with examples) is suitable for beginners and quick check of usage
π
Όππππ
»
π
³π
° π
Ήπ
Έπ
° π
·π
°π
ΎοΌπ
Έ'π
Ό π
π
π
€ π
§π
π
π
π
π
π
€ΚΚΜ―β’Ν‘Λβ’Μ―α·
ΚΙ
πΉκ§κ¦Ώππ
΄π
»π
²π
Ύπ
Όπ
΄βοΈ ππ
Ύβ¨ π
Όπ β€οΈπ
±π
»π
Ύπ
ΆπΉκ§κ¦Ώ
β¨β focus is not lost. Bloggers are still making efforts to prepare more wonderful content~ β ΚΚΜ―β’Ν‘Λβ’Μ― α·
ΚΙ Xiao Joo is here to thank you for your support!
β¨ π
²π
Όπ
³ entry and exit π
Όππππ
»
πΉ Connect to local database
mysql -uroot -p
. Exit mysql
exi ...
Added by westen on Wed, 09 Feb 2022 12:54:03 +0200
Java database operation practice student management system
This article is mainly a case review of the database. Students who don't understand the database can have a look. It's best to try it again. It will be helpful.
Database Version (I)
In order to review and consolidate the previous knowledge, I did this exercise, encountered problems and deepened my understanding. This article is suitable ...
Added by jamesl73 on Wed, 09 Feb 2022 12:31:47 +0200
5-minute introduction to Lindorm SearchIndex
Introduction: SearchIndex is the secondary index of Lindorm wide table, which is mainly used to help businesses realize rapid retrieval and analysis. This article introduces how to operate SearchIndex through a simple SQL interface.1, IntroductionThe cloud native multi-mode database Lindorm supports low-cost storage of massive data and flexible ...
Added by jammyjames on Wed, 09 Feb 2022 11:06:14 +0200
Database Data Extraction after Decryption of PC-side Wechat Following Wechat dat
Some time ago, I got the decoding of dat pictures in WeChat, and later some students asked how to decode the database.. Of course, after looking at it one after another, plus the messy things in hospital, it has not been handled. After handling it in the last few days, we found that the data format of the WeChat database is really troublesome.. ...
Added by Markx on Wed, 09 Feb 2022 04:17:29 +0200