Question Soufiane Amroun · Sep 11, 2017

Browse an SQL table on Cache

hi world, i want to browse an sql table on cache, and get min ,max value from one collumn, how can i do it ?

thank's

Comments

Walter Hodges · Sep 18, 2017

Select Max(ColumnName), Min(ColumnName) From TableName

0