如何获取 mysql 中单词不超过 40 个字符的列?

发布于 2025-01-02 04:33:45 字数 471 浏览 1 评论 0原文

基本上,我正在尝试在 php 中创建一个函数,该函数将为我提供最新的列(消息),其中单词不超过 40 个字符。我能够获取最新消息,但我不知道如何仅获取单词长度不超过 40 个字符的最新消息。请参考 $callrecent 变量。

<?php
function recentpost($postnum) {
$callrecent = "SELECT message FROM messages WHERE message (HAS NO WORD GREATER THAN 40 CHARACTERS) ORDER BY msg_id DESC LIMIT $postnum,1";

$callrecent_run = mysql_fetch_assoc(mysql_query($callrecent));

$message = stripslashes($callrecent_run['message']);

return $message;
}
?>

Basically, I'm trying to create a function in php that would give me the most recent column (message) that has no word greater than 40 characters. I was able to get the most recent message but I have no idea how to only get the most recent message that has no word greater than 40 characters. Please refer to the $callrecent variable.

<?php
function recentpost($postnum) {
$callrecent = "SELECT message FROM messages WHERE message (HAS NO WORD GREATER THAN 40 CHARACTERS) ORDER BY msg_id DESC LIMIT $postnum,1";

$callrecent_run = mysql_fetch_assoc(mysql_query($callrecent));

$message = stripslashes($callrecent_run['message']);

return $message;
}
?>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

书信已泛黄 2025-01-09 04:33:45

你可以使用正则表达式

SELECT message
FROM messages
WHERE message not regexp '[[:alnum:]]{41}'
ORDER BY msg_id DESC
LIMIT $postnum, 1

you could use regular expressions

SELECT message
FROM messages
WHERE message not regexp '[[:alnum:]]{41}'
ORDER BY msg_id DESC
LIMIT $postnum, 1
≈。彩虹 2025-01-09 04:33:45

尝试

  SELECT message
    FROM messages
   WHERE LENGTH(message) <= 40
ORDER BY msg_id DESC
   LIMIT $postnum, 1

Try

  SELECT message
    FROM messages
   WHERE LENGTH(message) <= 40
ORDER BY msg_id DESC
   LIMIT $postnum, 1
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文