Loading...
SCE
Home
AI Assistant
Ask Anything
Categories
Python
C#
C++
C
Visual Basic
Java
JavaScript
HTML
CSS
SQL
Git
VIEW ALL
Other
Tags
What's Hot
Featured
I'm Feeling Lucky
Latest
SCE
Loading...
Sign Up
Log In
Create a Simple Table
Posted by
mark123
Last Updated:
September 20, 2012
Create database DD_Mark;
Use DD_Mark;
create table student
(
student_id Integer Primary Key,
first_name varchar(45) Not Null,
last_name varchar(45) Not Null,
email varchar(18) Null,
emrgency_num varchar(20) Not Null
);
Related Content
How do you create a new table in SQL?
RoseHrs
|
Jul 21, 2024
How do you create a function that returns a table?
GraceDv
|
Jul 22, 2024
How can you update data in one table based on data in another table?
MaryJns
|
Jul 19, 2024
C program that print multiplication table from 1-10
Samath
|
Dec 21, 2014
Multiplication Table in Python
gideonna
|
Apr 13, 2016
How do you find the nth highest value in a table?
HenryPk
|
Jul 22, 2024
How do you create a clustered index on a table?
FrankMl
|
Jul 18, 2024
How do you use the DROP TABLE statement to delete a table?
MaryJns
|
Jun 09, 2024
How do you use the ALTER TABLE statement to convert an existing table to a temporal table?
GraceDv
|
Jul 11, 2024
How do you use the SELECT INTO statement to create a new table and insert data from an existing table?
QuinnLw
|
Jun 13, 2024
How do you use the DROP TABLE statement to delete an existing table from the database?
DavidLee
|
Jun 28, 2024
How do you use the ALTER TABLE statement to add a column to an existing table?
IreneSm
|
Jul 30, 2024
How do you use the ALTER TABLE statement to drop a column from an existing table?
JackBrn
|
Aug 05, 2024
How do you use the ALTER TABLE statement to add a constraint to an existing table?
FrankMl
|
Jun 29, 2024
How do you use the ALTER TABLE statement to drop a constraint from an existing table?
LeoRobs
|
Jun 05, 2024