> 데이터 베이스 > MySQL 튜토리얼 > MySQL (非存储过程)解决易语言难题

MySQL (非存储过程)解决易语言难题

WBOY
풀어 주다: 2016-06-07 14:56:56
원래의
1452명이 탐색했습니다.

很多人用不同的东西来解决易语言难题,咱也凑个热闹。如果用存储过程的话,和一般的编程语言也就雷同了,这里就用SQL的思想,在MySQL中实现一次。 MySQL drop table if exists n1;create temporary table n1(num int (1));insert into n1 values(1), (2), (3)

很多人用不同的东西来解决易语言难题,咱也凑个热闹。如果用存储过程的话,和一般的编程语言也就雷同了,这里就用SQL的思想,在MySQL中实现一次。
MySQL
drop table if exists n1;
create temporary table n1(num int (1));
insert into n1 values(1), (2), (3), (4), (5), (6), (7), (8), (9);

drop table if exists n2;
create temporary table n2
select * from n1;

drop table if exists n3;
create temporary table n3
select * from n1;

drop table if exists nums1;
create temporary table nums1
select n1.num * 100 + n2.num * 10 + n3.num as num
from n1 left join n2
on n1.num <> n2.num
left join n3
on n1.num <> n3.num and n2.num <> n3.num;

drop table if exists nums2;
create temporary table nums2
select * from nums1; 

drop table if exists nums3;
create temporary table nums3
select * from nums1;

select *
from nums1 as n1 left join nums2 as n2
on n1.num <> n2.num
left join nums3 as n3
on n1.num <> n3.num and n2.num <> n3.num
where n1.num * 2 = n2.num and n1.num * 3 = n3.num
and n1.num not rlike concat("[", n2.num, "]")
and n1.num not rlike concat("[", n3.num, "]")
and n2.num not rlike concat("[", n3.num, "]");

drop table if exists n1;
drop table if exists n2;
drop table if exists n3;
drop table if exists nums1;
drop table if exists nums2;
drop table if exists nums3;


结果:
mysql> select *
    -> from nums1 as n1 left join nums2 as n2
    -> on n1.num <> n2.num
    -> left join nums3 as n3
    -> on n1.num <> n3.num and n2.num <> n3.num
    -> where n1.num * 2 = n2.num and n1.num * 3 = n3.num
    -> and n1.num not rlike concat("[", n2.num, "]")
    -> and n1.num not rlike concat("[", n3.num, "]")
    -> and n2.num not rlike concat("[", n3.num, "]");
+------+------+------+
| num  | num  | num  |
+------+------+------+
|  192 |  384 |  576 |
|  219 |  438 |  657 |
|  273 |  546 |  819 |
|  327 |  654 |  981 |
+------+------+------+
4 rows in set (0.03 sec)
로그인 후 복사
원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿