MySQL
So_Band
冲呀!!!!
展开
-
将mysql中的一个空表格的编码改为GBK格式
在需要的数据库下编译这个代码,需要更换为GBK格式的表格ALTER TABLE 表格名 CONVERT TO CHARACTER SET gbk COLLATE gbk_chinese_ci原创 2019-03-05 13:57:38 · 504 阅读 · 0 评论 -
ubtun中MySQL的安装
在控制台上输入一下几条命令sudo apt-get install mysql-serverapt-get isntall mysql-clientsudo apt-get install libmysqlclient-dev登录MySQL的命令为:mysql -u root -p 就会进入MySQL的控制窗口显示当前数据库:show databases;接下来会显示每...原创 2019-03-03 12:34:55 · 394 阅读 · 0 评论 -
关于错误:Loading class `com.mysql.jdbc.Driver'. This is deprecated. The new driver class is `com.mysql.c
出现一下错误Loading class `com.mysql.jdbc.Driver'. This is deprecated. The new driver class is `com.mysql.cj.jdbc.Driver'. The driver is automatically registered via the SPI and manual loading of the drive...原创 2019-03-08 20:34:44 · 607 阅读 · 0 评论 -
在MySQL中查看一个表格的属性
首先进入该数据库中,如果要查看其中的表格的一些属性可以输入如下命令方法1:desc 表名;方法2describe 表名;原创 2019-03-14 13:10:08 · 7622 阅读 · 0 评论 -
查看数据库或表格的创建代码
show create table/database 表名/数据库名 //显示数据库中表的创建结构,数据库database不确定转载 2019-05-03 20:13:21 · 4087 阅读 · 0 评论