Access to SQL Server via a Gateway Script
Query the PUBS database
Suggestions for SQL Statements to access the PUBS database
- select * from authors will retrieve all information
in the authors table for each author
- select au_fname,au_lname from authors will retrieve
the first and last name for each author
- sp_tables will run a stored procedure that will list
each of the tables in the PUBS database.