java 21-mysql
Posted nineli
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java 21-mysql相关的知识,希望对你有一定的参考价值。
>> show databases;
>>CREATE DATABASE bigdata; 创建
>> use bigdata;
>>drop database bigdata; 删除
>>create table bigdata.mytable(id int ,nane varchar(200)); 创建表
>>insert into bigdata.mytable(id,nane
)VALUES(1,‘tom‘); 插入数据
>>select * from bigdata.mytable where id=1;查询
>>update mytable set id=3,nane=‘test‘ where id=1 ;更新
>>DELETE from bigdata.mytable where id=1; 删除数据
>> drop table bigdata.mytable;删除表
>>mysql 不区分大小写
>>select nane,id from bigdata.mytable where nane like ‘j%‘; 模糊查询
>>select nane,id from bigdata.mytable where nane like ‘%t_‘; _模糊匹配 t后面的单个字符
>>desc tablea;
>>create table t2 like t1;创建表结构 不含有数据
>>create table t2 as select * from t1;复制表结构含有数据
----cmd的下 netstat -ano 查看端口
以上是关于java 21-mysql的主要内容,如果未能解决你的问题,请参考以下文章