This commit is contained in:
Andrea Lam 2016-03-28 21:26:03 -07:00
Родитель 10aea37d9b
Коммит 369ab9e257
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -10,7 +10,7 @@ database: 'AdventureWorks', azure:true
#SELECT
#Execute a simple select statement.
results = client.execute("select top 10 * from SalesLT.Product")
results = client.execute("SELECT TOP 10 Title, FirstName, LastName from SalesLT.Customer")
#Print results of select.
results.each do |row|