Save
Upgrade to remove ads
Busy. Please wait.
Log in with Clever
or

show password
Forgot Password?

Don't have an account?  Sign up 
Sign up using Clever
or

Username is available taken
show password


Make sure to remember your password. If you forget it there is no way for StudyStack to send you a reset link. You would need to create a new account.
Your email address is only used to allow you to reset your password. See our Privacy Policy and Terms of Service.


Already a StudyStack user? Log In

Reset Password
Enter the associated with your account, and we'll email you a link to reset your password.
focusNode
Didn't know it?
click below
 
Knew it?
click below
Don't Know
Remaining cards (0)
Know
0:00
Embed Code - If you would like this activity on your web page, copy the script below and paste it into your web page.

  Normal Size     Small Size show me how

Fundata

TermDefinition
FUNDAMENTALS IN DATABASE SYSTEM DATA DEFINITION LANGUAGE (DDL) these commands are used to define and manage the structure of your database and tables.
CREATE DATABASE this command creates a new database
CREATE DATABASE database_name; Syntax for creating database
To create a database named PREMIERE CREATE DATABASE PREMIERE;
USE this command activates a database, making it the default for all subsequent commands in the session. You must run this at the start of every session
USE database_name; Syntax of using a database
USE PREMIER; To activate the PREMIERE database
CREATE TABLE this command describes the layout of a new table, including its columns, data types, and constraints like the primary key.
Syntax of creating a table SQL CREATE TABLE table_name ( column1_name data_type [CONSTRAINT], column2_name data_type [CONSTRAINT], ... PRIMARY KEY (primary_key_column) );
To create the REP table: CREATE TABLE REP ( REP_NUM CHAR(2) PRIMARY KEY, LAST_NAME CHAR(15), FIRST_NAME CHAR(15), STREET CHAR(15), CITY CHAR(15), STATE CHAR(2), ZIP CHAR(5), COMMISSION DECIMAL(7,2), RATE DECIMAL(3,2) );
DROP TABLE this command permanently deletes an entire table, including all the data within it.
DROP TABLE table_name; Syntax of deleting a table
Data Manipulation Language (DML) these commands are used to add, modify, and delete data within tables
INSERT INTO this command adds a new row of data to a table. Character values must be enclosed in single quotes.
Syntax (all columns) INSERT INTO table_name VALUES (value1, value2, ...);
To add the first sales rep to the REP table INSERT INTO REP VALUES ('20', ‘Kaiser’, ‘Valerie’, ‘624 Randall’, ‘Grove’, ‘FL’, 33321, 20542.50, 0.05);
Syntax (specific columns, for Nulls) INSERT INTO table_name (column1, column2) VALUES (value1, value2);
To add sales rep with only their number and name, leaving other fields NULL: INSERT INTO REP (REP_NUM, LAST_NAME, FIRST_NAME) VALUES (85, ‘Webb’, ‘Tina’);
Created by: vancejoy
 

 



Voices

Use these flashcards to help memorize information. Look at the large card and try to recall what is on the other side. Then click the card to flip it. If you knew the answer, click the green Know box. Otherwise, click the red Don't know box.

When you've placed seven or more cards in the Don't know box, click "retry" to try those cards again.

If you've accidentally put the card in the wrong box, just click on the card to take it out of the box.

You can also use your keyboard to move the cards as follows:

If you are logged in to your account, this website will remember which cards you know and don't know so that they are in the same box the next time you log in.

When you need a break, try one of the other activities listed below the flashcards like Matching, Snowman, or Hungry Bug. Although it may feel like you're playing a game, your brain is still making more connections with the information to help you out.

To see how well you know the information, try the Quiz or Test activity.

Pass complete!
"Know" box contains:
Time elapsed:
Retries:
restart all cards