MySQL 연산자 및 함수 요약

黄舟
풀어 주다: 2017-09-20 11:18:04
원래의
1231명이 탐색했습니다.

이 글은 MySQL에서 일반적으로 사용되는 연산자와 일반적인 기능의 사용법 및 예를 요약한 내용입니다. 필요한 친구는 이를 참조할 수 있습니다.

먼저 예를 살펴보겠습니다.


use test;
create table `employee`(
  emp_no int unsigned,
  emp_name varchar(30),
  emp_sex varchar(3),
  emp_age tinyint unsigned,
  sal double,
  history datetime
);
insert into employee values(1, '张三', '男', 18, 5000, '2012-04-23'),
(2, '李四', '男', 27, 4500, '2013-05-23'),
(3, '王五', '男', 23, 4700, '2012-04-21'),
(4, '子龙', '男', 19, 3800, '2011-03-04'),
(5, '李白', '男', 15, 6200, '2015-09-09'),
(6, '刘备', '男', 28, 2500, '2016-02-11'),
(7, '吕布', '男', 21, 6000, '2010-10-18'),
(8, '尚香', '女', 16, 4500, '2011-09-26'),
(9, '小乔', '女', 15, null, '2013-07-05'),
(10, '大乔', '女', 16, 5000, '2017-09-01');
로그인 후 복사

일반적으로 사용되는 연산자:
1: 같음 ( = )


  select * from employee where sal = 3800;
  select * from employee where sal = null;   --这里查询不到为null的数据
로그인 후 복사

2: 같음 ( <=> )


  select * from employee where sal <=> 3800;
  select * from employee where sal <=> null;  --这里可以查询到为null的数据
로그인 후 복사

3: is 판단 (null)


  select * from employee where sal is null;
  select * from employee where sal is not null;
로그인 후 복사

4: Null 값 판단에는 isnull()도 사용할 수 있습니다.


  select * from employee where isnull(sal);
  select * from employee where !isnull(sal);
로그인 후 복사

5: 최소와 최대 사이의 간격(사이) 내 ps: 닫힌 간격입니다

select * from employee where sal between 4500 and 5000;
로그인 후 복사

6: 이내 간격

select * from employee where sal not between 4500 and 5000;
  --null不为包括进去
로그인 후 복사

7 : and and or


  select * from employee where sal not between 4500 and 5000 or sal is null;
  select * from employee where sal = 4500 and emp_sex = &#39;女&#39;;
로그인 후 복사

8: 보다 작음(<), 보다 큼(>), 작거나 같음(<=), 크거나 같음 (>=)

select * from employee where sal >= 4500;
로그인 후 복사

<span style ="font-family: "Microsoft Yahei", "Hiragino Sans GB", Helvetica, "Helvetica Neue", 娮è½̅é>…é»', 타호마, Arial, 산세리프;">***** ************************************ **************** ********************************** ***************** ******</span><code><span style="font-family: "Microsoft Yahei", "Hiragino Sans GB", Helvetica, "Helvetica Neue", 微软雅黑, Tahoma, Arial, sans-serif;">***************************************************************************************************************</span><br/>

수학적 함수
1: rand();


  select rand() from dual;  --dual是一个伪表
  select 1+1 from dual;
  select rand();  --可以简写
로그인 후 복사

2: 최소값(값1, 값2, ...)은 최소값을 반환합니다


  select least(54,76,4,65,76,87,87,56,65,654,45,23,1,76);
  select least(54,76,4,65,76,87,87,56,65,654,45,23,1,76) as min_value;  --列名可以起一个别名
로그인 후 복사

3: 최대값(값1, 값2, ...) 최대값을 반환합니다.

 select greatest(54,76,4,65,76,87,87,56,65,654,45,23,1,76);
로그인 후 복사

4: 라운드(M, D ); M의 반올림된 값을 반환합니다. D는 유지할 소수 자릿수를 나타냅니다. 기본값은 0


  select round(1.69);
  select round(1.69, 1);
로그인 후 복사

5입니다. abs() 절대값


  select 5-10;
  select abs(5-10);
로그인 후 복사

***** ********************* ***************************** ********************** **************************** ********

집계 함수

1: avg();


  select * from employee where sal >= 6000;
  select avg(sal) from employee where sal >= 6000;
로그인 후 복사

2: count()


  select count(*) from employee;
  select count(emp_name) from employee;
  select count(sal) from employee;   --打印9 这里会忽略null值
  select count(*) from employee where sal >= 4000;
  select count(*) from employee where sal <= 4000 or sal is null;
로그인 후 복사

3: sum()

select sum(sal) from employee where sal >= 6000;
로그인 후 복사

4: min()

 select min(sal) from employee;
로그인 후 복사

5: max()

 select max(sal) from employee;
로그인 후 복사

******** ************************** ************************* ************************* ************************** ******

날짜 함수

1: 현재 날짜와 시간을 가져옵니다


  select now(), sysdate(), current_timestamp();
  select now(6), sysdate(6), current_timestamp(6);
  ps: now(), current_timestamp();没有区别, 表示sql开始执行时的时间
    sysdate()表示这个函数开始时间
로그인 후 복사

2: 현재 날짜 가져오기

select curdate(); 
  --只有年月日
로그인 후 복사

3: 현재 시간 가져오기

select curtime(); 
  --只有时分秒
로그인 후 복사

4: 날짜 더하기 연산 date_add​​​​​​


  select history, date_add(history, interval &#39;1 12:10&#39; day_minute) from employee;  --date_add(history, interval &#39;1 12:10&#39; day_minute)
  select history, date_add(history, interval &#39;1-1&#39; year_month) from employee;    --date_add(history, interval &#39;1-1&#39; year_month)
  select history, date_add(history, interval &#39;1&#39; second) from employee;       --date_add(history, interval &#39;1&#39; second)
로그인 후 복사

5: 날짜 빼기 연산 data_sub

select history, date_sub(history, interval &#39;1-1&#39; year_month) from employee;
로그인 후 복사

6: 날짜 차이 계산

 select history, sysdate(), datediff(sysdate(), history) from employee;     --以天数来表示
로그인 후 복사

7: 날짜의 지정된 부분 가져오기(날짜를 지정된 형식으로 변환) date_format()


  select history, date_format(history, &#39;%Y年%m月%d号&#39;) from employee;
  select history, date_format(history, &#39;%d号&#39;) from employee;
  select history, date_format(history, &#39;%Y年%m月%d号 %H时%i分%s秒&#39;) from employee;
로그인 후 복사

8: 요일 계산 for a date

select history, dayname(history) from employee;
로그인 후 복사

9: 중국어 날짜 문자열을 날짜로 변환 str_to_date()


  insert into employee values(11, &#39;张飞&#39;, &#39;男&#39;, 22, 3000, &#39;2017年02月01号&#39;);  --报错
  insert into employee values(11, &#39;张飞&#39;, &#39;男&#39;, 22, 3000, str_to_date(&#39;2017年02月01号&#39;, &#39;%Y年%m月%d号 %H时%i分%s秒&#39;));
로그인 후 복사

직원 값에 삽입(12, 'Second Brother', 'Male', 22, 3000, str_to_date('February 01 , 2017, 23:02:02', '%Y년 %m 월 %d 숫자 %H 시 %i 분 %s 초'));
직원 값에 삽입(12, '둘째', '남자', 22, 3000, str_to_date('2017년 2월 1일 11:02:02', '%Y년 %m 월 %d 숫자 %h 시간% i 분 %s 초'));
ps: h이면 12시간을 의미하고 H가 크면 24시간을 의미합니다.

문자열 함수

1: left(str, len) return 문자열 str의 왼쪽 끝은 len 문자입니다

select left(&#39;abcdefg&#39;, 5);
로그인 후 복사

2: 길이 ()

select length(&#39;abcdefg&#39;);
로그인 후 복사

3: lower(str)은 소문자 문자열 str

 select lower(&#39;HELLO&#39;);
로그인 후 복사

4를 반환합니다. substring()은 부분 문자열, 두 번째 문자열을 가져옵니다. 매개 변수는 가로채기 시작 위치이고 세 번째 매개 변수는 가로채기

select substring(&#39;helloworld&#39;,2,3);
로그인 후 복사

5: concat() 문자열 연결

 select concat(emp_name, &#39;员工&#39;) from employee;
로그인 후 복사

6: replacement(replace

select replace(emp_name, &#39;李&#39;, &#39;老&#39;) from employee where emp_name = &#39;李四&#39;;
로그인 후 복사

위 내용은 MySQL 연산자 및 함수 요약의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

관련 라벨:
원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿
회사 소개 부인 성명 Sitemap
PHP 중국어 웹사이트:공공복지 온라인 PHP 교육,PHP 학습자의 빠른 성장을 도와주세요!