I need to create query script that returns from the table only its odd rows, sorted in ascending order:
DECLARE @table TABLE (coluna1 varchar(50))
INSERT INTO @table
VALUES ('Anthony'),('Miguel'),('Benjamin'),('Lucca'),('Enzo'),('Martim'), ('N...
asked by
23.11.2017 / 16:06