Designing Databases ySQL Happy Meal Example.

Slides:



Advertisements
Similar presentations
1.Click on the Need a login? Click here. link directly beneath the login boxes. 2.Enter your social security number & birth date. When finished, click.
Advertisements

SalesCTRL Accounting Software HotLink. The SalesCTRL HotLink provides a single source for customer information.
If you have used MyCircle before, login with your & Password under Registered User. To retrieve a forgotten password,
Tips for using the [New Student Section] on
NMED 3850 A Advanced Online Design February 25, 2010 V. Mahadevan.
Creating a Users Table The users table contains a list of your site’s authorized users, logins, and passwords.
Database PowerPoint Guy Wade Comm 165 Guy Wade Comm 165.
Using the EBSCOhost Research Databases ACCESS EFFECTIVE SEARCHES PRINT AND SAVE AND CITE.
Type “ the address bar of your browser.
GROUP 5 Project presentation(Uhcl Housing) BY: #27-Lokanathan yokeshwaran #7-Pradeep Reddy Kolanu #16-Srujan Kumar #25-Likhith Kumar #5-Pradeep Burugu.
Membership leader training SVWF. How to add members Add children to the database /database/addhttp://
Session 5: Working with MySQL iNET Academy Open Source Web Development.
VASP PREPAYMENT SYSTEM Training Module for CLIENTS.
Enter User Id and Password Click on Submit Press Place Order Button.
ArchForum Presentation The first multilingual, multimedia archeological web forum.
Mr. Justin “JET” Turner CSCI 3000 – Fall 2015 CRN Section A – TR 9:30-10:45 CRN – Section B – TR 5:30-6:45.
Internal Application: Old Process Hiring Agency Post position Receive HCM-4B Prepare HCM-9 Send to applicant services Receive 9&4B Print and review Send.
Fall 2015 Parent Connection  Parent Connection is an application which provides parent access to their child’s grades, assignments, and attendance.
Password Recovery Via Customer Care. Account Detail Via Customer Service. Account Configuration With Our Experts. You Want Recover All information.
SYST Web Technologies SYST Web Technologies Databases & MySQL.
In the web address box enter Enter your user ID (first and last initial 7 digit ID number) Select Log in.
ISYS 475 Project: Customizing a Zen Cart E-Commerce Site.
Our Sunday Visitor Parishioner List Upload Instructions.
Step 1 – Go to the TRANServe Online Application log in screen Step 2 – Do not attempt to log in, instead, click on the “Register” button. This step applies.
World Cat World wide catalog of libraries in the U.S., Canada, and Europe.
How to Use Facebook This guide will help you navigate around the social networking site, Facebook.
3a. Create Login ID for First Time User How to Create an Online Application – Student Quick Reference Guide This quick reference guide contains step by.
Advanced Web 2012 Lecture 3 Sean Costain What is a Database? Sean Costain 2012 A database is a structured way of dealing with structured information.
Quiz questions. 1 A data structure that is made up of fields and records? Table.
Surface Water Integrated Monitoring System (SWIMS) Database system Rivers, streams, lakes DNR staff, volunteers, consultants, others.
 Empowers to your customer  Product Rating and its Management in Ecommerce Framework  Product Reviews and Management: Collecting customer opinion about.
Setting up google Adsense Account Please follow the instructions given in the slides to set up the google adsense account Please follow the instructions.
PGES Participant Roster District Web Administrator Instructions User Permission –Instructions for setting up access by District WAAPOC 1.
Getting started with VendorVision Getting started with VendorVision Congratulations on using VendorVision! To get started, go to the VendorVision.
BUS HIVE CREATING FAVORITES USER GUIDE TRAINING FOR TRIP REQUESTORS & APPROVERS California State University, Chico Vehicle Reservations Office.
Log into the Simplicity Website User Name: Password: africa55Simplicity
Blog Assignments 1. Setup a blog on blogger.com 2. the link to 3. Using the directions from dickson- english.blogspot.com 4.
UST Connect – Learn how to set up your profile and upload a resume. UST Connect is managed by UST Career Services. (713)
LOGIN by UserId (GujcetNo.), Password and PIN No..
Creating an Apple ID.
MOBILE ACCESS & PDS CONNECTS
QUESTRA HOLDINGS ACCOUNT REGISTRATION
CIIT-Human Computer Interaction-CSC456-Fall-2015-Mr
HOW TO CREATE YOUR LISTING
Auto User Creation.
records Database Vocabulary It can be useful to collect information.
MYSQL and WAMP On LocalHost
Database application MySQL Database and PhpMyAdmin
DNS offers Self Assessment Tax Return Services in UK
Database Management  .
My EBSCOhost Tutorial Tutorial support.ebsco.com.
Easy Way to Reset WordPress Admin Password on Localhost? Guided By: WPGLOBALSUPPORTWPGLOBALSUPPORT.
Website: Contact No: ID:
Fastmail Password Recovery. Customer Service Number: For more details visit this link:
WORD PRESS How to create website using WordPress
How a Volunteer registers their details on the RAWCS Volunteer website
Chromebook Enrolment.
PHP and MySQL.
First Step: Go to and click on NUCLEUS
To access bill pay site go to biller specific URL
How to Navigate MSA-U Need help?
Lotterease Parent manual
For Create a new account , For Registration Click New Register Link
Great Resource of Newspapers and Magazines
MyLion Registration Website | Mobile device
WELCOME How to Setup Yahoo Account Key Feature in Browser? CONTACT US
Registration Stand By Me
Lotterease Parent manual
Registering your returning student at Moody ISD
NHS - How do I register my new account details?
Presentation transcript:

Designing Databases ySQL Happy Meal Example

The Setup Website for McDonald’s Happy Meal toy collectors Basic Functionality: Allow people to create site account Post info about toys Look up info about toys Trade/Post for Sale The Setup

What Data Must Site Deal In? Database to house individual data Determine how to organize it Ea. Piece of info stored: FIELD Sets of related fields: TABLE All tables together: DATABASE What Data Must Site Deal In?

Some Basic Info to Store User Info First Name Last Name User ID Password Photo Email Address Toy Info Name Collection Year Picture Toy ID Some Basic Info to Store

Way to Link the Two Tables Collection User ID Toy ID Way to Link the Two Tables

Translating to MySQL Creating Actual Database

Select Data Types for Fields varchar(40) varchar(15) mediumblob date Select Data Types for Fields

Start the WAMP & Open MySQL

Create a new DB

Name it Set collation to utf8_general_ci Press create Create DB

Select the DB (happymeals)

Fill in info Press Go Create User Table

Fill in Fields Set userid as primary Set Fields in Table

See Results

Create Toy Table Return to DB by clicking happymeal link Fill in info Press Go Create Toy Table

Fill in Fields Set userid as primary Set Fields in Table

View Results

Create Collection Table

Set Fields

View Results

Access Tables & Print from Print View Option Link

View of Whole DB

View of Individual Tables