Database
SQL
Xiaobai's second level of learning Oracle: Creation of the first Oracle database table
Xiaobai's second level of learning Oracle: Creation of the first Oracle database table
Nowadays, in actual work, creating tables in the database is often used. In this article, the editor mainly shares with you how to create tables in the database through SQL statements. First, use plsql to connect to the oracle database and ensure that the following services are enabled.

Our requirements for creating a table this time are: create a class table, and a Zhang student table.

1. First, the class table serves as the main table, which is the so-called primary key. In the main table, the constraints we use here are primarykey and not null
create table classinfo(
classid number(2) primary key,
classname varchar(10) not null
);sql analysis:
--create table The keyword to create the table
--classinfo is the name of the created table
--classid is the class table The id data type is number(2). We give it 2 lengths by default. We set the class id as the primary key to facilitate other foreign key associations.
--classname is the class name data type It is character type varchar(10). We have given a default length of 10 characters. The constraint of the class name is that it cannot be empty
Execute the sql statement:

# The classinfo table was created successfully.

2. Then we create a foreign key, that is A table associated with the primary key. Please see the following SQL statement for the data types and constraints used.
create table studentinfo(
studentid number(2) primary key,
studentname varchar(10) not null,
studentsex char(2) check(studentsex='男' or studentsex='女'),
studentage number(2) not null,
studenttel number(11) unique,
studentaddress varchar(50) default '上海',
classid number(2) references classinfo(classid)
);SQL statement analysis:
--create table keyword to create a table
--studentinfo(); is the table name used to create the student information table
--studentid (student id) The constraint is the primary key primary key
--studentname (student name) The constraint is not null
--studentsex (student gender) The constraint is check
--studentage (student age) The constraint is not null
--studenttel (student phone number) The constraint is unique
- -studentaddress (student address) are the column names in the student table.
The student table studentinfo is created.

The complete sql statement is as follows:
create table classinfo(
classid number(2) primary key,
classname varchar(10) not null
);
create table studentinfo(
studentid number(2) primary key,
studentname varchar(10) not null,
studentsex char(2) check(studentsex='男' or studentsex='女'),
studentage number(2) not null,
studenttel number(11) unique,
studentaddress varchar(50) default '上海',
classid number(2) references classinfo(classid)
);At this point, the class table and student table we created have been demonstrated. Isn’t it very simple?
[Recommended course: Oracle Video Tutorial]
The above is the detailed content of Xiaobai's second level of learning Oracle: Creation of the first Oracle database table. For more information, please follow other related articles on the PHP Chinese website!
Hot AI Tools
Undress AI Tool
Undress images for free
Undresser.AI Undress
AI-powered app for creating realistic nude photos
AI Clothes Remover
Online AI tool for removing clothes from photos.
Clothoff.io
AI clothes remover
Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!
Hot Article
Hot Tools
Notepad++7.3.1
Easy-to-use and free code editor
SublimeText3 Chinese version
Chinese version, very easy to use
Zend Studio 13.0.1
Powerful PHP integrated development environment
Dreamweaver CS6
Visual web development tools
SublimeText3 Mac version
God-level code editing software (SublimeText3)
What is Impossible Cloud Network (ICNT)? How? A comprehensive introduction to the ICN project that Binance will launch soon
Jul 07, 2025 pm 07:06 PM
Contents 1. What is ICN? 2. ICNT latest updates 3. Comparison and economic model between ICN and other DePIN projects and economic models 4. Conclusion of the next stage of the DePIN track At the end of May, ICN (ImpossibleCloudNetwork) @ICN_Protocol announced that it had received strategic investment in NGPCapital with a valuation of US$470 million. Many people's first reaction was: "Has Xiaomi invested in Web3?" Although this was not Lei Jun's direct move, the one who had bet on Xiaomi, Helium, and WorkFusion
What is the purpose of temporary tablespaces in Oracle?
Jun 27, 2025 am 12:58 AM
TemporarytablespacesinOracleareusedtostoretemporarydataduringSQLoperationslikesorting,hashing,andglobaltemporarytables.1)SortingoperationssuchasORDERBY,GROUPBY,orDISTINCTmayrequirediskspaceifmemoryisinsufficient.2)Hashjoinsonlargedatasetsusetemporary
Redis vs databases: what are the limits?
Jul 02, 2025 am 12:03 AM
Redisislimitedbymemoryconstraintsanddatapersistence,whiletraditionaldatabasesstrugglewithperformanceinreal-timescenarios.1)Redisexcelsinreal-timedataprocessingandcachingbutmayrequirecomplexshardingforlargedatasets.2)TraditionaldatabaseslikeMySQLorPos
How does Oracle manage transaction commits and rollbacks using redo and undo mechanisms?
Jul 08, 2025 am 12:16 AM
Oracleensurestransactiondurabilityandconsistencyusingredoforcommitsandundoforrollbacks.Duringacommit,Oraclegeneratesacommitrecordintheredologbuffer,markschangesaspermanentinredologs,andupdatestheSCNtoreflectthecurrentdatabasestate.Forrollbacks,Oracle
What is Ethereum cross-chain bridge? How to achieve asset transfer?
Jul 02, 2025 pm 10:57 PM
Blockchain technology has spawned many independent networks, such as Ethereum, Binance Smart Chain, Polygon, etc. Each network has its own unique design and protocol. However, this independence also presents the challenge of difficult assets and information flowing freely between different chains. For example, ERC-20 tokens on Ethereum cannot be used directly on the Polygon network. In order to solve this isolation problem, cross-chain bridges emerged and became the key infrastructure to connect different blockchain networks.
How to select a different database in Redis?
Jul 05, 2025 am 12:16 AM
ToswitchdatabasesinRedis,usetheSELECTcommandfollowedbythenumericindex.Redissupportsmultiplelogicaldatabases(default16),andeachclientconnectionmaintainsitsownselecteddatabase.1.UseSELECTindex(e.g.,SELECT2)toswitchtoanotherdatabase.2.Verifywithcommands
What is the significance of the Oracle instance, and how does it relate to the database?
Jun 28, 2025 am 12:01 AM
AnOracleinstanceistheruntimeenvironmentthatenablesaccesstoanOracledatabase.Itcomprisestwomaincomponents:theSystemGlobalArea(SGA)andbackgroundprocesses.1.TheSGAincludesthedatabasebuffercache,redologbuffer,andsharedpool,whichmanagedataandSQLstatements.
How do I insert data into a database using PHP?
Jun 23, 2025 am 12:49 AM
ToinsertdataintoadatabaseusingPHP,followthesesteps:establishadatabaseconnection,preparetheSQLinsertstatement,executethequery,andclosetheconnection.1.ConnecttothedatabaseusingmysqliorPDO,providinghostname,username,password,anddatabasename,handlingerro


