需要准备的材料分别是:电脑、sql查询器。
1、首先,打开sql查询器,连接上相应的数据库表,以stu2表查询age>10的数据为例。
2、点击“查询”按钮,输入:select id, IF(sex=1, '男', '女') as sex from stu2 where age >5。
3、点击“运行”按钮,此时用where查询出了age>5的数据,并且之后用了if条件判断性别。
不能用IF,你可以在查询中使用case when then例如:
select case when 列1=‘条件’then ‘值2’ else ‘值1’ end, * from 表A
where 查询条件
String.prototype.sub = function (n) {var r = /[^\x00-\xff]/g
if (this.replace(r, "mm").length <= n) return this
// n = n - 3
var m = Math.floor(n / 2)
for (var i = mi <this.lengthi++) {
if (this.substr(0, i).replace(r, "mm").length >= n) {
return this.substr(0, i)
}
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)