• MySQL基本查询语句


    1、查看当前使用的是哪个数据库

    mysql> select database();

    另外,在下面2个语句的输出里也能看出当前库是哪一个

    mysql> show tables;

    mysql> status;

    2、查看MySQL版本和状态

    mysql> select VERSION();

    mysql> status;

    3、查看MySQL实例的当前状态(参数形式)

    mysql> show status;

    4、查看MySQL实例的参数

    mysql> show variables;

    查看最大连接数

    mysql> show variables like '%max_connections%';

    5、查看MySQL实例当前的进程

    mysql> show processlist;

    6、查询所有数据

    select * from Info 查所有数据

    select Code,Name from Info 查特定列

    7、根据条件查

    select * from Info where Code='p001' 一个条件查询 

    select * from Info where Code='p001' and Natio n='n001' 多条件 并关系 查询

    select * from Info where Name='胡军' or Nation='n001' 多条件 或关系 查询

    select * from Car where Price>=50 and Price<=60 范围查询

    select * from Car where Price between 50 and 60 范围查询

    8、模糊查询

    select * from Car where Name like '%型' %通配符代表任意多个字符

    select * from Car where Name like '%奥迪%'

    select * from Car where Name like '_马%' _通配符代表任意一个字符

    9、排序

    select * from Car order by Price asc 按照价格升序排列

    select * from Car order by Price desc 按照价格降序排列

    select * from Car order by Price,Oil 按照两列进行排序,前面的为主要的

    10、统计函数(聚合函数)

    select count(Code) from Car 查询表中有多少条数据

    select max(Price) from Car 取价格的最大值

    select min(Price) from Car 取价格的最小值

    select sum(Price) from Car 取价格的总和

    select avg(Price) from Car 取价格的平均值

    11、分组查询

    select Brand from Car group by Brand having count(*)>2 查询所有系列中数量大于2的

    12、分页查询

    select * from Car limit 0,5 跳过几条数据取几条数据

    13、去重查询

    select distinct Brand from Car

    14、查询建库、建表语句

    mysql> show create database dbname;

    指定库后才能查询建表语句

    mysql> show create table tablename;

    15、查询指定表的字段属性

    mysql> show full columns from tablename;

    或者

    mysql> show full fields from tablename;

  • 相关阅读:
    SDN原理 OpenFlow协议 -3
    SDN原理 OpenFlow协议 -2
    蓝桥杯----特殊的回文
    hdu-4513吉哥系列故事——完美队形II--最长回文
    蓝桥杯: 基础练习 十六进制转八进制
    母函数模板核心
    杭电ACM hdu 2079 选课时间 (模板)
    杭电ACM hdu 1398 Square Coins
    求用1g、2g、3g的砝码(每种砝码有无穷多个)称出10g的方案有几种
    有1克、2克、3克、4克的砝码各一枚,能称出哪几种重量?
  • 原文地址:https://www.cnblogs.com/wazixuetang/p/11276536.html
Copyright © 2020-2023  润新知