Learn what SQL (Structured Query Language) is, and how it is used when required.
SQL Database Tables are the foundation of every RDBMS (Relational Database Management System).
Here is an example of a simple database table, containing customers data. The first row, listed in bold, contains the names of the table columns:
Table: Customers
Now that we’ve learned what is a database table, we can continue with our sql tutorial and learn how to manipulate the data within the database tables.
|
Here is an example of a simple database table, containing customers data. The first row, listed in bold, contains the names of the table columns:
Table: Customers
FirstName | LastName | Email | DOB | Phone |
Scott | Armstrong | Armstrong@yahoo.com | 2/4/1968 | 626 222-2222 |
Adam | Red | red@fishhere.net | 4/4/1974 | 323 455-4545 |
Santo | James | james@herowndomain.org | 5/24/1978 | 416 323-3232 |
Jackson | Jimmy | jackson@supergig.co.uk | 20/10/1980 | 416 323-8888 |
No comments:
Post a Comment