ByteNote LogoByteNote

Navigation

  • Blog
  • 工具

    © 2025 ByteNote. All rights reserved.

    MySQL中的select结果按时间排序

    Jun 30, 20225 min read
          SELECT * FROM tb_history th
          where not exists
          (
            select 1 from tb_history 
            where key_word = th.key_word  
            and create_time > th.create_time 
          )
          ORDER BY create_time desc
          limit 10
    

    相关文章

    nextjs next/font 的使用

    Next.js 是一个支持自动静态优化和快速构建的React SSR框架,其next/font模块简化了Google Fonts和自定义字体的添加,需先安装fontsource,然后在项目中引入并设置全局字体样式。

    Linux 如何能用 ip 命令查看 ip,都有哪些参数 ?

    在Linux中,使用ip命令及其参数如address、link、route等可以查看和管理网络接口的IP地址、状态、路由表等详细信息。

    使用 vscode 创建python 虚拟环境

    安装Python环境和Visual Studio Code后,通过VS Code的命令面板创建并配置Python虚拟环境,以便使用。

    任何网页:RSS:API,24小时帮您盯着

    该工具支持对任何网页、RSS或API进行24小时监控,提供多种提醒方式和自定义脚本处理功能,适用于多种实时监控场景。

    解决 “The user denied permission to use Service Worker

    通过将[*.]github.dev添加到浏览器的cookie允许列表并允许第三方cookie,解决了在codespaces中用户拒绝使用Service Worker的问题。