mysql如何查询对一张表的多个字段中某条记录的某

2021-02-28 20:07:30 字数 2001 阅读 6569

1楼:执着的枫叶子

select * from testtable t where t.a is not null and t.b is not null and t.c is not null;

mysql 一张表中如何查询某个字段最长值的那条记录? 10

2楼:司马刀剑

1、一般查询语句:select `lcontent` from `caiji_ym_liuyan`

查询数据:

2、有些时候需要查询某个字段的长度为多少时候才显示数据:

sql语句:select `lcontent` from `caiji_ym_liuyan` where

length(lcontent)<=40

ps:在mysql中一个汉字等于3个字节,所以查询的时候需要转换一下特别要注意的就时候对于字节的转换

3楼:匿名用户

length(字段名)函数可找出记录中对应字段的长度,用这个函数就可以了。

select语句如下:

select * from office where name='李四' and length(itemid)=(select max(length(itemid)) from office)

这样就可以找出itemid最长的李四的记录了,当然了,没对记录的条数做限制,可能会有多条记录

mysql 更新update表中某一个字段记录

4楼:匿名用户

格式:update 表名称 set 字段名称 = 字段名称 + 1 [ where语句]

比如,数据库中有一张student表,要想把id为1的学生成绩(score)加1则

update student set score=score+1 where id = 1

如果是需要多个字段同时在原来的值的基础上加1只用一条sql语句的话,那么就用逗号隔开

比如我需要给我的表中计数,表中有三类字段是这样:

1.总节点数 :numbernode

2.简单节点数 :number******node

3.复杂节点数 :number***plexnode

无论是我在给简单节点数还是复杂节点数加1的时候我都得给总节点数加1,那么就有如下语句来完成:

update scenario set numbernode = numbernode + 1,number******node = number******node + 1;1

5楼:匿名用户

update tablename set column1 = value1 where age is null

column是你想更新的字段名,value1是值,判定是否为空一般用 is null 或者is not null,你这里用is null应该

6楼:匿名用户

update tablename set age='newage' where age='';

7楼:

update table set age= '***' where length(age) = 0;

mysql中在同一张表如何将一条记录的某一字段的值赋值给另一条记录的相对应的字段?

8楼:匿名用户

update语句可以搞定,但是需要join配合,例如,有个表如下,需要将id =999对应的name改为id=1000对应的name

可以这么做:

update person t1 join (select id,name from person where id = 1000 limit 1 ) as t2 on t1.id <= t2.id set t1.

name = t2.name where t1.id = 999 and t2.

id = 1000

修改后的结果

这样就可以了。。

怎么查询表中某个字段相同值的记录数大于1的记录

1楼 匿名用户 表结构呢? select from tab where 商品编码 in select 商品编码 from tab group by 商品编码 having count 1 2楼 匿名用户 select 商品编码 ,count from 表名 guoup by 商品编码 having ...

mysql查询时按照某个字段计算后的值排序

1楼 山水阿锐 先把分类全取出来,并随机排序,取排在第一个分类。 2楼 匿名用户 select 商品名称 商品原价 折扣率 商品原价 折扣率 as 折后价 from 表 order by 折后价 3楼 卫青芬仰卯 查询成功了,但是你没有把查询的值赋给变量,所以你肯定得不到值, sql select ...

mysql联表查询后,将某个字段的特定值排序在最前面

1楼 匿名用户 查询成功了,但是你没有把查询的值赋给变量,所以你肯定得不到值, sql select meta value from wp postmeta where meta key img link and post id 1 result mysql query sql while row ...