Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在创建一个简单的健康检查页面,以确保我的应用程序可以连接到 mysql。
我正在使用 jdbctemplate,如果表为空或其他任何内容,您建议我执行什么查询不会引发错误,只是确保我的 spring 应用程序可以连接到数据库。
你可以试试select 1 from my_table
select 1 from my_table
您可以执行以下查询。
SELECT COUNT(*) col FROM dual WHERE 1=0