Enter password: ******Welcome to the MySQL monitor. Commands end with ; or \g.Your MySQL connection id is 7Server version: 5.1.55-community MySQL Comm ...
分类:
其他好文 时间:
2018-11-28 22:30:30
阅读次数:
211
官方解释:Return a copy of the string with its first character capitalized and the rest lowercased.(返回字符串的副本,其首字符大写,其余字符小写。) 使用方法: ...
一、项目环境 开发系统:Window10 开发工具:IDEA JDK:1.8 框架:Maven+Spring+SpringMVC+Mybatis 数据库:Mysql 二、项目结构 项目文件架构: 三、Maven配置 pom.xml 四、SSM的配置文件 mybatis-config.xml spri ...
分类:
其他好文 时间:
2018-11-28 19:03:02
阅读次数:
119
初识SQL 及 MySQL/MariaDB 安装 什么是SQL、SQL能做什么 SQL:即结构化查询语言(Structured Query Language)。 SQL如名字所示,是指从数据库中查找对应记录的语言。它有自己的标准,众多数据库产品大部分都遵循这个标准,即掌握SQL也掌握了众多数据库管理 ...
分类:
数据库 时间:
2018-11-28 01:05:38
阅读次数:
226
原文地址:http://lucumr.pocoo.org/2014/1/5/unicode-in-2-and-3/ It's becoming increasingly harder to have reasonable discussions about the differences betwe ...
分类:
编程语言 时间:
2018-11-26 02:27:44
阅读次数:
182
原文地址:https://www.joelonsoftware.com/2003/10/08/the-absolute-minimum-every-software-developer-absolutely-positively-must-know-about-unicode-and-charact ...
分类:
编程语言 时间:
2018-11-25 20:04:46
阅读次数:
206
We are given two strings, A and B. A shift on A consists of taking string A and moving the leftmost character to the rightmost position. For example, ...
分类:
编程语言 时间:
2018-11-25 18:01:32
阅读次数:
185
1 数据库基本操作 1.1 查看数据库 例:查看mysql中所有的数据库 1.2 查看建库语句 格式:SHOW CREATE DATABASE 数据库名; 例:查看已创建的数据库itcast的建库语句 1.3 创建数据库 格式:CREATE DATABASE 数据库名; 例:创建名为test的数据库 ...
分类:
数据库 时间:
2018-11-24 16:44:35
阅读次数:
242
修改数据库字符集: ALTER DATABASE db_name DEFAULT CHARACTER SET character_name [COLLATE …]; 把表默认的字符集和所有字符列(CHAR,VARCHAR,TEXT)改为新的字符集: ALTER TABLE tbl_name CONV ...
分类:
数据库 时间:
2018-11-24 14:29:12
阅读次数:
244
修改表的默认字符集: ALTER TABLE table_name DEFAULT CHARACTER SET character_name; 修改表字段的默认字符集: ALTER TABLE table_name CHANGE field field field_type CHARACTER SE ...
分类:
数据库 时间:
2018-11-24 14:23:00
阅读次数:
192