Skip to content

Instantly share code, notes, and snippets.

View dionnyprensa's full-sized avatar
☺️
Making Value

Dionny Prensa dionnyprensa

☺️
Making Value
View GitHub Profile
{
"ProvinciasRD": [
{
"Nombre": "Azua",
"Municipios": [
{
"Nombre": "Azua de Compostela",
"DistritosMunicipales": [
{
"Nombre": "Barreras"
@dionnyprensa
dionnyprensa / tablePaginator.sql
Last active October 15, 2018 16:30
Simple pager for sql server
CREATE PROCEDURE MyTablePagerSP
@Page INT = 1,
@SizePerPage INT = 100
AS
BEGIN
SET NOCOUNT ON:
SELECT FieldA, FieldB, FieldC
FROM MyTable
ORDER BY MyTable.SomeFieldIndexed