Introduction to DMSQL

1.DMSQL classification DML (data management language) - insert - update - delete - select DDL (data definition language) - create - drop - alert - truncate DCL (data control language) - grant - revoke TCL (transaction control) - commit - rollback - savepoint 2. Writing specification of SQL statement Keywords cannot be abbrev ...

Posted by d22552000 on Thu, 23 Dec 2021 00:45:37 +0100

2020 Xiaodi training (day 16 WEB vulnerability - query method and error reporting blind note)

WEB vulnerability - query method and error reporting blind note preface During SQL injection, many injections will not be echoed. The reason for not echoing may be the problem of the query method of SQL statements (the returned results of insert, update and delete only prompt completion / incomplete). At this time, we need to use relevant err ...

Posted by mad_hacker on Wed, 22 Dec 2021 20:58:54 +0100

REHL8 detailed steps for installing Oracle19C database

1, Preparation before installation 1.1 create RAID5 disk array To view the number of hard disk devices, use the ll / dev/sd * command [root@TradeProbe ~]# ll /dev/sd* brw-rw----. 1 root disk 8, 0 8 May 15:36 /dev/sda brw-rw----. 1 root disk 8, 1 8 May 15:36 /dev/sda1 brw-rw----. 1 root disk 8, 2 8 May 15:36 /dev/sda2 brw-rw----. 1 root di ...

Posted by teo99 on Wed, 22 Dec 2021 18:12:25 +0100

Navicat Premium data migration, go to O to Mysql

1. Use Navicat Premium to connect oracle and mysql To connect to local oracle, you need to download the corresponding oci file OCI download address Extract the downloaded oci file, Navicat premium - > tools - > Options, and find the extraction address of oci configuration oci file 2. Problems encountered in migration and Solutions 1. T ...

Posted by etoast on Wed, 22 Dec 2021 09:56:05 +0100

Redis Server startup process parsed from source

Redis Server Startup Process Today, let's start with Redis server. We know that the main function is the entry to Redis's entire running program, and that when a Redis instance is running, it also starts executing from this main function. Also, since Redis is a typical Client-Server architecture, once the Redis instance starts running, the Re ...

Posted by fred12ned on Wed, 22 Dec 2021 09:50:10 +0100

SQL statement overview and quick query

1, SQL overview SQL (structured Query Language) is a structured Query Language used to access, query, update data and manage relational database systems 1.1 SQL development SQL was introduced by IBM in 1981. Once it was applied in the database, it became the general specification of the database The specification of SQL is determined b ...

Posted by guanche on Wed, 22 Dec 2021 08:43:14 +0100

Daily exercise - "calculating the value of Boolean expression" LeetCode Plus member exclusive question [detailed analysis] Hive / MySQL

Hello, I'm Lao Wu. You can also call me classmate Wu. Younger friends can also call me senior brother Wu. Welcome to the world of data analysis with me and learn together! Interested friends can pay attention to me Data analysis column , there are many high-quality articles to share with you. In addition, you are also welcome to pay attention ...

Posted by iimrii on Tue, 21 Dec 2021 23:18:07 +0100

MySQL - connection query

Meaning: it is also called multi table query. When the query fields come from multiple tables, the join query will be used Cartesian boarding phenomenon: Table 1 has n rows, table 2 has m rows, and the result = n*m rows Cause: there is no valid connection condition How to avoid: adding valid connection conditions Classification: 1. Classifi ...

Posted by fahhem on Tue, 21 Dec 2021 20:02:02 +0100

Compile and install PostgreSQL under Ubuntu

prefaceRecently, a classmate asked how to compile and install PostgreSQL under Ubuntu. This time, let's talk about how to install PostgreSQL database in Ubuntu operating system. So, installing PostgreSQL is the easiest thing for DBA s. We know that PostgreSQL has three installation methods in RedHat family system, namely source code installatio ...

Posted by weazy on Tue, 21 Dec 2021 18:43:51 +0100

SQL data insertion trigger

Insert multiple messages at a time SQL34 link address: https://www.nowcoder.com/practice/51c12cea6a97468da149c04b7ecf362e?tpId=82&&tqId=29802&rp=1&ru=/ta/sql&qru=/ta/sql/question-ranking Title Description: The topic has already executed the following statement: drop table if exists actor; CREATE TABLE actor ( actor_id ...

Posted by fizzystutter on Tue, 21 Dec 2021 13:26:46 +0100