Guest - Jevanilson - Posted October 13, 2004 Report Share Posted October 13, 2004 Tenho uma tabela chamada rs, e estou usando o banco de dado access e gostaria de saber como exibir o 2 últimos registros da tabela.Use o seguinteSet conn = Server.CreateObject("ADODB.Connection")Conn.Open connStringsql = "select * from hoteis order by diaria desc"Set rstTemp = Server.CreateObject("ADODB.RecordSet")rstTemp.MaxRecords = 2mas esta exibindo todos os registrosDesde já agradeço. Quote Link to comment Share on other sites More sharing options...
0 gladiador Posted October 13, 2004 Report Share Posted October 13, 2004 /* Use Select *from tabela where campo = "algumacoisa" ORDER by DESC limit 0,2 */apesar de responder vou mover para access pois como você disse está usando access Quote Link to comment Share on other sites More sharing options...
0 Guest - Jevanilson - Posted October 14, 2004 Report Share Posted October 14, 2004 Muito obrigado, vou tentar fazer assim.Obrigado. Quote Link to comment Share on other sites More sharing options...
0 Lisandro Oliveira Posted October 15, 2004 Report Share Posted October 15, 2004 Muito obrigado, vou tentar fazer assim.Obrigado. JEVANILSON, você pode colocar um top assim:"select top 2 * from hoteis order by diaria desc"beleza?? Quote Link to comment Share on other sites More sharing options...
Question
Guest - Jevanilson -
Tenho uma tabela chamada rs, e estou usando o banco de dado access e gostaria de saber como exibir o 2 últimos registros da tabela.
Use o seguinte
Set conn = Server.CreateObject("ADODB.Connection")
Conn.Open connString
sql = "select * from hoteis order by diaria desc"
Set rstTemp = Server.CreateObject("ADODB.RecordSet")
rstTemp.MaxRecords = 2
mas esta exibindo todos os registros
Desde já agradeço.
Link to comment
Share on other sites
3 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.