将SQL语句字符串格式化、美化、压缩方便查看或填充。
select id,name,phone from user_info where status=1 and create_time>'2025-01-01' order by id desc limit 10;
SELECT
id,
name,
phone
FROM
user_info
WHERE
status = 1
AND create_time > '2025-01-01'
ORDER BY
id DESC
LIMIT 10;
SELECT id,name,phone FROM user_info WHERE status=1 AND create_time>'2025-01-01' ORDER BY id DESC LIMIT 10;