gpt4 book ai didi

mysql - 选择记录条件随机#MySQL

转载 作者:行者123 更新时间:2023-11-29 13:30:10 24 4
gpt4 key购买 nike

我有两张表,一张用于静态图像,一张带有此属性,两个表都链接在一起,以便属性不能有图片。您想要“选择”吗?我可以在其中选择所有属性以及该属性的随机图片。如何做到这一点?

最好的例子是,我从图像表中为表中包含静止图片的每条记录选择一个随机图像。想随机选择这个。我能做的就是为银行属性(property)的每条记录选择所有图像。我只希望每个记录 ivel 都有一个各自的随机图像。

sql如下:

select distinct 

imovel.nome as 'NOME',
imovel.valor as 'VALOR',
imovel.quarto as 'QUARTO',
imovel.suite as 'SUITE',

cidade.nome as 'CIDADE',
bairro.nome as 'BAIRRO',
(select distinct nome from tabimagem img where img.cdimovel = imagem.cdimovel order by rand() limit 1) as 'IMAGEM'

from tabimovel imovel

inner join tabcidade cidade on imovel.cdcidade = cidade.codigo
inner join tabbairro bairro on imovel.cdBairro = bairro.codigo
inner join tabimagem imagem on imagem.cdImovel = imovel.codigo

order by rand()

最佳答案

在 SQL Server 中,在 SELECT 之后添加 TOP 1,并按 ORDER BY NEWID() 排序。

在 MySQL 中,顺序应为 ORDER BY RAND(),后跟 LIMIT 1

这应该有效。

关于mysql - 选择记录条件随机#MySQL,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19576233/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com