Category Archives: Blog Development

Querying the database – looking up stuff

Note: This is the part where I might do most of my entries — searching for stuff within the database. Not quite running reports — that’s later. Select (variable name) from (table name) — returns all records For example: Select … Continue reading

Posted in Blog Development | Tagged | Leave a comment

Create southwind database and table

CREATE DATABASE southwind; /*creates a new database and names it*/ SHOW DATABASES; /*displays all databases*/ USE southwind; /*tells mysql which database you want to work with*/ SELECT DATABASE; /*tells you which database has been selected*/ SHOW TABLES; /*displays any tables … Continue reading

Posted in Blog Development | Tagged | Leave a comment

Accounts and Security in Ubuntu Server and phpmyadmin

Desired Outcome OK -Understanding root and its password -Understanding user account that has root privs within mysqladmin -Understanding privs within mysqladmin and mysql -Confirming that the sql server is created correctly re: ip address, etc -Confirming the UbuntuServer is configured … Continue reading

Posted in Blog Development | Tagged | Leave a comment