摘要:
DDL:指的是操作数据库、表、字段的相关语句,例如:create、alter、drop DML:指的是对表中的数据进行增删改的操作,例如:insert、update、delete 查询语句书写顺序:select >from >where >group by >having >order by >li 阅读全文
摘要:
map()函数map()是 Python 内置的高阶函数,它接收一个函数 f 和一个 list,并通过把函数 f 依次作用在 list 的每个元素上,得到一个新的 list 并返回。 例如,对于list [1, 2, 3, 4, 5, 6, 7, 8, 9] 如果希望把list的每个元素都作平方,就 阅读全文