Giter Site home page Giter Site logo

c0deblack-altertable's Introduction

Background

SQL sublanguage: DDL (Data Definition Language)

Let's say we created the following table:

id firstname
1 'Kevin'
2 'Brian'
3 'Charles'

The site_user table when it was created, forgot to add the 'lastname' column.

We could go about solving this in 2 different ways:

  • We could remove the table completely and create the table again with the correct number of columns
  • We can use the ALTER keyword to add a new column to the existing table. (This is what we will be looking at for this lab) The ALTER keyword allows us to add / remove columns and constraints on an existing table. The syntax for the ALTER keyword is different depending on what we want to achieve:
    • Adding a column:
      • sql ALTER TABLE table_name ADD column_name data_type [constraint];
    • Removing a column:
      • sql ALTER TABLE table_name DROP column_name;

NOTE: the [] in the "Adding a column" syntax means that the constraint is optional

Additional reference material if needed: https://www.w3schools.com/sql/sql_alter.asp


Lab

Problem 1

site_user table

id firstname
1 'Kevin'
2 'Brian'
3 'Charles'

Problem 1: Use the ALTER keyword to add a "lastname" column to the "site_user" table, of type varchar(100).

c0deblack-altertable's People

Contributors

kevinchilds avatar c0deblack avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.