Custom Search
My Zimbio

Sunday, April 5, 2009

Database Basics

Simple every day select statements

Select count(*) from table
Select getdate()
Select "titlevalue"

Select * from table
Select top 1 * from table
Select max(column) from table
Select min(column) from table

No comments:

Post a Comment