12 2023 档案
摘要:drop procedure if exists insert_into_t5_sp5; delimiter // create procedure insert_into_t5_sp5(in min_idx_value int ,in max_idx_value int) begin while(
阅读全文
摘要:sudo apt install cmake; cmake --version; CMakeLists.txt cmake_minimum_required(VERSION 3.20) project(test_cmake C CXX) message(STATUS "PROJECT_NAME:${
阅读全文
摘要:drop procedure if exists insert_into_t2_sp; DELIMITER // CREATE PROCEDURE insert_into_t2_sp() BEGIN DECLARE i INT DEFAULT 2; WHILE (i <= 1000000) DO I
阅读全文
摘要:#include <chrono> #include <cstring> #include <ctime> #include <fstream> #include <iomanip> #include <iomanip> #include <iostream> #include <memory> #
阅读全文
摘要:int main(int args, char **argv) { system("notify-send 'title' 'message'"); system("notify-send 'title:update failed' 'message:update clause failed'");
阅读全文
摘要:mysql> select @@version; + + | @@version | + + | 8.0.35-0ubuntu0.23.04.1 | + + 1 row in set (0.00 sec) mysql> create table t4(id bigint unsigned auto_
阅读全文
摘要:mysql> show create table t3; + + + | Table | Create Table | + + + | t3 | CREATE TABLE `t3` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `create_tim
阅读全文