看到一个不错的题,据说腾讯的面试题:
已知 小小+霸霸+王王=小霸王
小=?,霸=?,王=?
用sql求解
答案在下面,先自己思考一下
create table n_table (n int) -- n 为 0..9
select a.n, b.n, c.n from n_table a, n_table b, n_table c where 11 * (a.n + b.n + c.n) = a.n * 100 + b.n * 10 + c.n
|
阅读(2448) | 评论(0) | 转发(0) |