SQL HW1 Turn in as a hardcopy at the start of next class period. You may work this assignment in groups.

Slides:



Advertisements
Similar presentations
PHP SQL. Connection code:- mysql_connect("server", "username", "password"); Connect to the Database Server with the authorised user and password. Eg $connect.
Advertisements

MySQL Installation Guide. MySQL Downloading MySQL Installer.
Aqua Data Studio. Find the application We are using Aqua Data Studio v11.
Discovering SQL all rights reserved (c) 2010 agilitator.com INSTALLING MS SQL Server 2008 R2 Express Edition.
DSX / Video Insight Driver Interface. Prerequisites for Video Insight DVR: 64 Bit Operating System (Windows 7 or equivalent) SQL Server 2008 R2 (Please.
What is MySQL? MySQL is a relational database management system (A relational database stores data in separate tables rather than putting all the data.
Creating WordPress Websites. Creating a site on your computer Local server Local WordPress installation Setting Up Dreamweaver.
2004, Jei Nessus A Vulnerability Assessment tool A Security Scanner Information Networking Security and Assurance Lab National Chung Cheng University
Using Relational Databases and SQL Steven Emory Department of Computer Science California State University, Los Angeles Laboratory 1: Introduction to Relational.
Multiple Tiers in Action
Discovering SQL all rights reserved (c) 2010 agilitator.com INSTALLING MySQL 5.1 Community Server.
1 Foundations of Software Design Lecture 27: Java Database Programming Marti Hearst Fall 2002.
PHP Scripting Language. Introduction “PHP” is an acronym for “PHP: Hypertext Preprocessor.” It is an interpreted, server-side scripting language. Originally.
Dynamic Web site With PHP and MySQL. MySQL The combination of MySQL database and PHP scripting language is optimum for building dynamic websites. MySQL.
X2O Server Installation
+ Connecting to the Web Week 7, Lecture A. + Midterm Basics Thursday February 28 during Class The lab Tuesday, February 26 is optional review Class on.
CSCI 6962: Server-side Design and Programming
Session 5: Working with MySQL iNET Academy Open Source Web Development.
JDBC Java Database Connectivity. What is an RDBMS? Relational database management system. There are other kinds of DBMS. Access is a GUI on a JET RBDMS.
CNIT 132 Intermediate HTML and CSS Publish Web Page.
Analysis of SQL injection prevention using a proxy server By: David Rowe Supervisor: Barry Irwin.
Advanced Database Management System Lab no. 11. SQL Commands (for MySQL) –Update –Replace –Delete.
PHP Programming with MySQL Slide 8-1 CHAPTER 8 Working with Databases and MySQL.
Connecting to USF Network for Web Site SSH Secure Shell is the FTP program you will use to download your http files onto the USF server. To get the SSH.
Views, Indexes and JDBC/JSP tutorial Professor: Dr. Shu-Ching Chen TA: Haiman Tian 1.
ATG Environment Setup In this session you will learn – Setting Up ATG environment – Creating new ATG application – Configuring Data Source – Configuring.
SYST Web Technologies SYST Web Technologies Databases & MySQL.
Using OUI to install Oracle9i Release 2 on an OpenVMS System.
Database control Introduction. The Database control is a tool that used by the database administrator to control the database. To enter to Database control.
Module 4 : Installation Jong S. Bok
Index and JDBC/JSP tutorial Professor: Dr. Shu-Ching Chen TA: Hsin-Yu Ha.
1 Chapter Overview Performing Configuration Tasks Setting Up Additional Features Performing Maintenance Tasks.
A Brief Documentation.  Provides basic information about connection, server, and client.
“Source” the file Download tables.sql from the class website Upload it into your cse account “source” the file at the command line – mysql -h student-db.
DATABASE TOOLS CS 260 Database Systems. Overview  Database accounts  Oracle SQL Developer  MySQL Workbench.
JDBC Tutorial CSCI 201L Jeffrey Miller, Ph.D. HTTP :// WWW - SCF. USC. EDU /~ CSCI 201 USC CSCI 201L.
Web Server Administration Chapter 7 Installing and Testing a Programming Environment.
RAD to Database Connection Glenn Campbell
File Transfer Protocol (FTP) FTP host stores files Client logs into host Client program sends command to get a file FTP host downloads the file with error.
PHP Programming. Topics Database Handling (MySQL, MSSQL, ODBC)
WAMP Server Installatin Shiyun Wen. WAMP Server Installation  WAMP Server is an integrated installation of Apache, MySQL, and PHP for Windows. Following.
What is MySQL? MySQL is a relational database management system (RDBMS) based on SQL (Structured Query Language). First released in January, Many.
 To start using PHP, you can:  Find a web host with PHP and MySQL support  Install a web server on your own PC, and then install PHP and MySQL.
1 Introduction to SQL *Plus Oracle SQL Interface MIS309 Database Systems.
Settings MySQL Database and JDBC configuration Instructor: Sergey Goldman.
CMPE 226 Database Systems April 19 Class Meeting Department of Computer Engineering San Jose State University Spring 2016 Instructor: Ron Mak
Slide Set #24: Database security SY306 Web and Databases for Cyber Operations.
PHP and SQL Server: Connection IST 210: Organization of Data IST2101.
9 Copyright © 2004, Oracle. All rights reserved. Getting Started with Oracle Migration Workbench.
COM621: Advanced Interactive Web Development Lecture 10 PHP and MySQL.
19 Copyright © 2008, Oracle. All rights reserved. Security.
Fundamental of Databases
How to Start SQL Server and SSDT BI in Local
Introduction to Dynamic Web Programming
Relational database and SQL MySQL LAMP SQL queries
Database Project: MySQL
UFIE8K10-M Data Management 2006/7
HW#4 Making Simple BBS Using JDBC
PDO Database Connections
1z0-320 Exam dumps - Get 1z0-320 PDF With Actual Questions Answers
1Z0-320 Dumps
Printers.
Database Driven Websites
Aqua Data Studio.
Chapter 8 Working with Databases and MySQL
PDO Database Connections
PDO Database Connections
MSIS 655 Advanced Business Applications Programming
Install MySQL Community Server and MySQL Workbench
Data Base.
Presentation transcript:

SQL HW1 Turn in as a hardcopy at the start of next class period. You may work this assignment in groups.

Using MySQL The MySQL server is on candler.cs.unca.edu  ssh to candler before connecting to the MySQL server Logon to the server using the student account as follows: candler> mysql –u student This account does not have a password Use the orderEntry database for this HW: mysql> use orderEntry; To run a query that has been stored in a file with the name query1.sql (in the current working directory): mysql> source query1.sql;

OPTIONAL: Connecting to the MySQL Server from OpenOffice Base on Windows Download the ‘Driver Installer (zipped EXE)’ for Windows from: html Follow the ‘Configuring a MyODBC DSN on Windows’ instructions on: configuration-dsn-windows.html In Base select connect to an ‘existing database’ and follow instructions.

Some basic SQL statements: Show the databases that are available for you to query: mysql> show databases; Select a database with the use command: mysql> use ; Show the tables in a database: mysql> show tables;  After executing the use command View the attributes of a table: mysql> describe ;  After executing the use command

Formulate the following queries in SQL and turn in a hardcopy of each query: Develop queries to answer the following questions from page 125 of your textbook: 2, 5, 6, 13