Super detailed explanation of basic SQL statements

It is recommended to use the installation package. After installation, modify the mysql configuration file my.ini to change the character set to utf8 show database show databases; If the database mysql9_17 delete mysql9 if it already exists_ seventeen drop database if exists mysql9_17; Create dUTF-8...

Posted by spidie on Mon, 20 Sep 2021 10:30:20 +0530

Datawhale September team learning task03 complex query

Datawhale September team learning task03 complex query preparation 1, View Image source: https://www.bilibili.com/video/BV1va4y1x7tW?from=search&seid=15245999763303735560&spm_id_from=333.337.0.0 1. What is a view Views are visual tablesIs a virtual tableViews are created based on SELECT statemeUTF-8...

Posted by mwgi2005 on Mon, 20 Sep 2021 15:48:37 +0530

Ctfshow getting started with web sql injection

web171 Construct the Payload according to the query statement given by the topic $sql = "select username,password from user where username !='flag' and id = '".$_GET['id']."' limit 1;"; Explosion database name -1' union select 1,database(),3 --+ Burst table name -1' union select 1,group_concatUTF-8...

Posted by FutonGuy on Tue, 21 Sep 2021 16:09:59 +0530

SQL programming task04 job - set operation

1. Learning content DataWhale SQL team learning Addition and subtraction of Table 2 What is set operation? A set represents "the sum of all kinds of things" in the field of mathematics and a set of records in the field of database. Specifically, the execution results of tables, views and queriUTF-8...

Posted by ChroniX88 on Wed, 22 Sep 2021 19:15:26 +0530

Simple learning SQL - set operation

1. Set operation Use a Venn's diagram to illustrate what set operation is. 1.1 intersection union give an example: SELECT product_id, product_name FROM Product UNION SELECT product_id, product_name FROM Product2; 1.1.1 union equivalent conversion The results under different conditions of the saUTF-8...

Posted by shibiny on Wed, 22 Sep 2021 19:25:10 +0530

How MySQL Implements Field split Function --- Famous SQL Practice Seeks Top 10 Tags

For table building statements, see the article: SQL Exercise 1 - Famous Language SQL Exercise The data is as follows: What are the top 10 tags? The SQL implementation is written as follows: select tmp.tag,count(tag) amount from ( select q.id ,q.tags,ht.help_topic_id, substring_index( substring_UTF-8...

Posted by trex005 on Wed, 22 Sep 2021 22:35:05 +0530

In September, datawhale formed a team to learn task04 set operation

In September, datawhale formed a team to learn task04 set operation 1, Addition and subtraction of tables 1. What is set operation The execution results of tables, views and queries learned earlier are collections The element is the record, which is each row of the table or query result Set opeUTF-8...

Posted by mcirl2 on Wed, 22 Sep 2021 22:40:36 +0530

Basic operations of incluxdb

Noun interpretation Before explaining the related operations of influxdb, let's talk about some proper nouns of influxdb and what these nouns represent. influxdb related nouns Database: database;measurement: table in the database;points: a row of data in the table. Some unique concepts in influUTF-8...

Posted by jscruggs on Thu, 23 Sep 2021 18:00:22 +0530

MyBatis -- paging and paging plug-in pagehelper

preface There are several ways to realize the paging of the mybatis framework. The simplest is to use the native sql keyword limit. The other is to use the interceptor to splice sql to achieve the same functions as limit. The other is to use the PageHelper. Here, take MySQL as an example to exUTF-8...

Posted by s-mack on Thu, 23 Sep 2021 18:43:13 +0530

Ten thousand word long article explains in detail the Python data analysis tool Pandas and its comparison with SQL

preface As one of the most important libraries for data analysis in Python, Pandas can help us easily start data analysis. In this article, I will summarize some basic concepts and operation syntax of Pandas in detail. At the same time, I will also make a simple comparison between Pandas and SQUTF-8...

Posted by olechka on Fri, 24 Sep 2021 21:21:04 +0530