SQL Online Test

SQL Online Practice Test 1) SQL (Structured Query Language) was initially developed at…… a) Micro Soft b) Oracle c) IBM d) HP 2) SQL is not used for…… a) Create New Databases b) Create New Tables in a Database c) Join Tables to Retrieve data d) Join Databases 3) Which is not a subset of … Read more

SQL Statements

SQL Statements 1.SQL INSERT Statement The INSERT Statement is used to add new rows of data to a table. We can insert data to a table in two ways, 1) Inserting the data directly to a table. Syntax for SQL INSERT is: INSERT INTO TABLE_NAME [ (col1, col2, col3,…colN)] VALUES (value1, value2, value3,…valueN); col1, col2,…colN … Read more