其實(shí),在sqlite3中沒有top的語法結(jié)構(gòu),但在sqlite3中有相關(guān)的語法能實(shí)現(xiàn)跟top語法相同的功能,sqlite3 sql是用limit這樣的語法來實(shí)現(xiàn)的; 如: 復(fù)制代碼代碼如下: select * from table where name='_安靜ゝ' order by id limit 0,10; 這個(gè)效果就相當(dāng)于select top 10 * from table where name='_安靜ゝ'; ...
www.dbjr.com.cn/article/342...htm 2025-5-13