zoukankan      html  css  js  c++  java
  • 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%'; 模糊查询

    >>

    --根据cid求max(price)
    select id,max(price) from ord GROUP BY cid order by id asc ;
    --分组后进行过滤
    select id,max(price) from ord GROUP BY cid having max(price)>10;

    >>select * from t2 limit 3,10; 3表示跳过多少不要,10表示要多少。

    >>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 查看端口

     --行转列的显示(仅限于显示相当于自动换行)

    >>select * from ord G;

  • 相关阅读:
    #define中的特殊符号
    c++ windows下计时
    c++内存池
    u3d 场景资源打包
    Unity3d 动态加载材质方法
    Unity3D Shader基础教程
    Unity3D Shader入门指南(一)
    Unreal发展史
    阴影锥(shadow volume)原理与展望
    软硬RAID 和 不常见的RAID
  • 原文地址:https://www.cnblogs.com/simly/p/11547295.html
Copyright © 2011-2022 走看看