摘要:
1.无序列表 <ul type="square"> <li>第一项</li> <li>第二项</li> <li>第三项</li> <li>第四项</li> </ul> 2.有序列表 <ol type="1" start="5"> <li>111</li> <li>222</li> <li>333</ 阅读全文
posted @ 2023-10-09 18:50
wellplayed
阅读(12)
评论(0)
推荐(0)
摘要:
1.升序排序 select * from xxx order by 字段 2.降序排序 select * from xxx order by 字段 desc 阅读全文
posted @ 2023-10-09 16:43
wellplayed
阅读(61)
评论(0)
推荐(0)
摘要:
# 查询学生表中所有数据 并且只取第一条数据SELECT * FROM student LIMIT 1 阅读全文
posted @ 2023-10-09 16:37
wellplayed
阅读(189)
评论(0)
推荐(0)