I bought a book of SQL and I see there's a language to make data bases or lists. The question is, where do I write it?
Name:
Anonymous2012-04-08 14:26
You need a database management system to run the statements against. ORACLE or SQLSERVER are commonly used in business but MYSQL so i suggest you download it, you run the SQL through a command prompt style window that comes with the download.
If your using SQL in programming you will initiate a database connection using language of your choice and initialise a driver in that language for which ever database management system you are using and then parse the SQL though that connection.
Remember syntax for SQL varies across different database management systems so you may need to look up specific SQL for the system you are using.