This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
CREATE PROCEDURE MyTablePagerSP | |
@Page INT = 1, | |
@SizePerPage INT = 100 | |
AS | |
BEGIN | |
SET NOCOUNT ON: | |
SELECT FieldA, FieldB, FieldC | |
FROM MyTable | |
ORDER BY MyTable.SomeFieldIndexed |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"ProvinciasRD": [ | |
{ | |
"Nombre": "Azua", | |
"Municipios": [ | |
{ | |
"Nombre": "Azua de Compostela", | |
"DistritosMunicipales": [ | |
{ | |
"Nombre": "Barreras" |