"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
What You'll NeedTo replicate this book's examples on your own computer, you'll need:
A text editor . Typing short or ad-hoc interactive SQL statements at a prompt is convenient, but you'll want to store nontrivial SQL programs in text files. A text editor is a program that you use to open, create, and edit text files, which contain only printable letters, numbers, and symbolsno fonts, formatting, invisible codes, colors, graphics, or any of the clutter usually associated with a word processor. Every operating system includes a free text editor. Windows has Notepad, Unix has vi and emacs, and Mac OS X has TextEdit, for example. By convention, SQL files have the filename extension .sql , but you can use .txt (or any extension) if you prefer.
Most examples in this book use the same database, described in "The Sample Database" in Chapter 2. To build the sample database, follow the instructions in Appendix A. If you're working with a production server DBMS, you might need permission from your database administrator to run SQL programs that create and update data and database objects.A database management system . How do you get SQL? You don'tyou get a DBMS that understands SQL and feed it an SQL program. The DBMS runs your program and displays the results, as described in the next chapter. |