package com.test; public class FreeFile { public static void main(String[] args) { // 加号拼接 String str = ""; long start1 = System.currentTimeMillis(); for (int i = 0; i < 100000; i++) { str += "c"; } long end1 = System.currentTimeMil…
小白两篇博客熟练操作MySQL 之 第二篇 一. 视图 视图是一个虚拟表,其本质是根据SQL语句获取动态的数据集,并为其命名,用户使用时只需使用名称即可获取结果集, 并可以将其当做表来使用. select * from ( select id name, from t1 where id > 2 ) as A where A.name > "kong"; 临时表查询 1. 创建视图 --格式:CREATE VIEW 视图名称 AS SQL语句 create view…