What is Oracle: RDMS owned by Oracle Corporation, which has different version for its respective customers and community.
- Enterprise
- Standard
- Express
- Oracle Lite
- Personal Edition
Lets see few interesting ingo below:
TABLE CONSTRAINTS – use don Create table and alter table – there are 3 constraints – Primary Key, foreign Key, Check. The column constraints are
Create table –
CREATE TABLE schema_name.table_name (
column_1 data_type column_constraint,
column_2 data_type column_constraint,
…
table_constraint
);
Ex: kindly relate/compare the texts and see! below tb.userInfo is the table name and the Column names are id_no, Firstname and the Last name respectively
CREATE TABLE tb.userInfo (
id_no NUMBER GENERATED BY DEFAULT AS IDENTITY,
FirstName VARCHAR(50) NOT NULL,
LastName VARCHAR(50) NOT NULL,
PRIMARY KEY(id_no));
Alter Table:
ALTER TABLE table_name
ADD column_name type constraint;
Ex:
ALTER TABLE tb.userInfo(
ADD COLUMN Address VARCHAR(300) NOT NULL
);
to validate if the above code works, it lists all the column info of the specified table.
Desc tb.userInfo
Create Views
Oracle Clauses
Oracle Operators
Oracle Advance
Oracle Joins
Advanced Oracle