6 lines
281 B
SQL
6 lines
281 B
SQL
-- Copyright 2018 Tanel Poder. All rights reserved. More info at http://tanelpoder.com
|
|
-- Licensed under the Apache License, Version 2.0. See LICENSE.txt for terms & conditions.
|
|
|
|
prompt Show min/max (low/high) values in column "&1" of table &2....
|
|
select min(&1), max(&1) from &2;
|