上一页 1 ··· 18 19 20 21 22 23 24 25 26 ··· 76 下一页
摘要: //create table t1 CREATE TABLE `t1` (`id` bigint NOT NULL AUTO_INCREMENT,`author` varchar(40) NOT NULL,`comment` varchar(40) NOT NULL,`content` varcha 阅读全文
posted @ 2023-10-31 00:59 FredGrit 阅读(6) 评论(0) 推荐(0) 编辑
摘要: //create table t1; create table t1(id bigserial not null primary key,author varchar(40) not null,comment varchar(40) not null,content varchar(40) not 阅读全文
posted @ 2023-10-24 23:15 FredGrit 阅读(15) 评论(0) 推荐(0) 编辑
摘要: alter table table_name alter column column_name new_type CREATE TABLE public.t2 ( id serial primary key, name character varying(40) NOT NULL, author c 阅读全文
posted @ 2023-10-22 19:35 FredGrit 阅读(15) 评论(0) 推荐(0) 编辑
摘要: //settings.json { "configurations": [ { "name": "Linux", "includePath": [ "${workspaceFolder}/**", "/usr/include/c++/13", "/usr/include/x86_64-linux-g 阅读全文
posted @ 2023-10-19 22:15 FredGrit 阅读(41) 评论(0) 推荐(0) 编辑
摘要: sudo apt update; sudo apt upgrade; sudo apt install postgresql postgresql-contrib; sudo systemctl start postgresql.service https://www.digitalocean.co 阅读全文
posted @ 2023-10-16 20:55 FredGrit 阅读(5) 评论(0) 推荐(0) 编辑
摘要: cannot open source file "stddef.h" (dependency of "chrono"). Please run the 'Select IntelliSense Configuration...' command to locate your system heade 阅读全文
posted @ 2023-09-17 01:36 FredGrit 阅读(1275) 评论(0) 推荐(1) 编辑
摘要: #include <iostream> void ignore_exceptions() { for(int i=-10;i<10;i++) { std::cout<<"i:"<<i<<", 100/i="<<100/i<<std::endl; } std::cout<<"Finished in " 阅读全文
posted @ 2023-09-15 18:20 FredGrit 阅读(15) 评论(0) 推荐(0) 编辑
摘要: sudo apt install libmysqlcppconn-dev #include <algorithm> #include <atomic> #include <barrier> #include <bitset> #include <chrono> #include <ctime> #i 阅读全文
posted @ 2023-09-11 01:28 FredGrit 阅读(3) 评论(0) 推荐(0) 编辑
摘要: mysql 5.7.16 installer download url for once click installation https://cdn.mysql.com/archives/mysql-installer/mysql-installer-community-5.7.16.0.msi 阅读全文
posted @ 2023-09-09 22:10 FredGrit 阅读(13) 评论(0) 推荐(0) 编辑
摘要: 1.Ubuntu install vscode; sudo snap install --classic codecode --version; 2.update upgrable upgrade sudo apt update; sudo apt list --upgradable; sudo a 阅读全文
posted @ 2023-09-09 21:57 FredGrit 阅读(10) 评论(0) 推荐(0) 编辑
上一页 1 ··· 18 19 20 21 22 23 24 25 26 ··· 76 下一页