Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

What do I use to code in SQL?

Status
Not open for further replies.

appletonsally

Programmer
Joined
Dec 2, 2001
Messages
4
Location
GB
I have been reading up on SQL and it seems to be a really intuitive language but, what do you actually use to code it. For example, to code in visual basic you can use visual basic applications in Microsoft Excel or you can buy a visual basic studio. What are the equivalents for SQL?
 
A helpful sql interface is query analyzer that comes with SQL Server. The executable is called either isql.exe or isqlw.exe. You put your code in the top frame and can see the results immediately in the bottom frame.
 
A SQL processor works with a relational database. You need a relational database system to use SQL. You can buy MS Access, your company can buy MS SQL Server, or Oracle. You can obtain a free limited-use copy of Oracle from Oracle either on CD or download. All three have SQL processors and tools for writing and executing SQL statements. You can write SQL statements in any text-editor, but that won't be much fun without a SQL processor to tell you what you did wrong and to submit your statements to a database.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top