摘要: exists : 强调的是是否返回结果集,不要求知道返回什么, 比如: select name from student where sex = 'm' and mark exists(select 1 from grade where ...) ,只要exists引导的子句有结果集返回,那么exi 阅读全文
posted @ 2021-05-06 21:40 一二三的三二一 阅读(786) 评论(0) 推荐(0)
摘要: 1、join的用法 >>> import random >>> def createFunction1(): str1 = [] str2 = 'abcdefghijklmnopqrstuvwxyz ' count = 0 while(count < 27): ch = random.choice( 阅读全文
posted @ 2021-05-06 21:34 一二三的三二一 阅读(51) 评论(0) 推荐(0)