SlideShare a Scribd company logo
1 of 21
SESSION-(2023-2024)
A SEMINAR
ON
“ORACLE FUNCTION”
“SUBMITTED INPARTIAL FULFILLMENT OF THE REQUIREMENT FOR
AWARD OF MASTER OF SCIENCE OF COMPUTER SCIENCE”
Guided By : Presented By:
Mr. Sandeep Dey Sanju Sanjeev Toppo
(H.O.D of Computer Application) Msc.Cs III semester
23-11-2023
INDEX
 HTML TABLE TAG
 Table Tag Container
 Table Atributes
 Table Row
 Table Header
 Table Data
HTML Tables Tag
HTML table tag is used to display data in tabular form
(row & column). There can be many columns in a row.
We can create a table to display data in tabular form,
using <table> element, with the help of <tr> , <td>, and <th>
elements.
Tables for Page Layout
<TABLE>
Table
(made up of rows)
<TR>
Row
(made up of data cells)
<TH>
Heading Data Cell
(Can contain paragraphs,
images, lists, forms, tables)
<TD>
Data Cell
(Can contain paragraphs,
images, lists, forms, tables)
The <table>…</table> Container
 <table> defines the beginning and </table>
end of a table.
 Attributes
 background
 bgcolor
 border
 cellspacing
 cellpadding
 width
 height
<TABLE> Attributes
 BORDER -
 Determines the thickness of the table border
 Example: <TABLE BORDER = “2”>
 CELLPADING -
 Determines the distance between the border of a cell and the
contents of the cell
 Example: <TABLE CELLPADDING = “3”>
 CELLSPACING -
 Determines the empty spacing between the borders of two
adjacent cells
 Example: <TABLE CELLSPACING = “1”>
Example :
 ALIGN -
 Possible values: Center, Left, Right
 Example: <TH ALIGN = “center”>
 BGCOLOR -
 Example: <TD BGCOLOR = “red”>
 WIDTH -
 Example: <TR WIDTH = “40%”>
 HEIGHT -
 Example: <TABLE HEIGHT = “200”>
HTML Code
10
<TABLE>
<TR>
<TH>Indoor</TH>
<TH>Outdoor</TH>
</TR>
<TR>
<TD>Squash</TD>
<TD>Cricket</TD>
</TR>
</TABLE>
Browser Display
Indoor Outdoor
Squash Cricket
HTML Code
11
<TABLE border = "1" >
<TR>
<TH>Indoor</TH>
<TH>Outdoor</TH>
</TR>
<TR>
<TD>Squash</TD>
<TD>Cricket</TD>
</TR>
</TABLE>
Browser Display
Indoor Outdoor
Squash Cricket
The <tr>…</tr> Container
 Defines a table row
 Attributes
 align
 valign
 bgcolor
<TR> Attributes
 VALIGN
 Determines the vertical alignment of the contents of all of
the cells in a particular row
 Possible values: Top, Middle, Bottom
 Example: <TR VALIGN = “bottom”>
The <td>…</td> Container
 Defines a data cell in a table.
 Attributes:
 align
 valign
 height
 background
 bgcolor
 height
 width
 colspan
 rowspan
<th>…</th> Container
 Defines a header cell
 Acts just like a <td>…</td> container, except …
 The text is normally centered vertically and
horizontally AND the text is bold
 Attributes are the same as <td>…</td>
<TH> & <TD> Attributes
 NOWRAP
 Extend the width of a cell, if necessary, to fit the contents of
the cell in a single line
 Example: <TD NOWRAP>
 COLSPAN
 No. of rows the current cell should extend itself downward
 Example: <TD COLSPAN = “2”>
 ROWSPAN
 The number of columns the current cell should extend itself
 Example: <TD ROWSPAN = “5”>
 VALIGN
 Same as that for <TR>
HTML Code
17
<TABLE border=“1” >
<TR>
<TH colspan=“2”>
Indoor Outdoor
</TH>
</TR>
<TR>
<TD>Squash</TD>
<TD>Cricket</TD>
</TR>
</TABLE>
Browser Display
Indoor Outdoor
Squash Cricket
Example of Colspan
HTML Code
18
<TABLE border=“1” >
<TR>
<TH rowspan=“2”>
Indoor Outdoor
</TH>
</TR>
<TR>
<TD>Squash</TD>
<TD>Cricket</TD>
</TR>
</TABLE>
Browser Display
Example of Rowspan
Indoor
Squash
Outdoor
Cricket
<caption>…</caption> Container
 Provides a summary of the table’s purpose
 MUST immediately follow <table>
 Attributes:
 align
 summary
 valign
20
<TABLE border = "1" >
<CAPTION>
My favorite sports
</CAPTION>
<TR>
<TD>Squash</TD>
<TD>Cricket</TD>
</TR>
</TABLE>
HTML Code Browser Display
Squash Cricket
My favorite sports
Example of caption
Thank u…!

More Related Content

Similar to RDBMS oracle function RDBMSRDBMSRDBMS.pptx

Web design - Working with tables in HTML
Web design - Working with tables in HTMLWeb design - Working with tables in HTML
Web design - Working with tables in HTMLMustafa Kamel Mohammadi
 
v4-html-table-210321161424.pptx
v4-html-table-210321161424.pptxv4-html-table-210321161424.pptx
v4-html-table-210321161424.pptxHemantBansal35
 
HTML 5 Tables and Forms
HTML 5 Tables and FormsHTML 5 Tables and Forms
HTML 5 Tables and FormsDoncho Minkov
 
Table in MS Frontpage 2003
Table in MS Frontpage 2003Table in MS Frontpage 2003
Table in MS Frontpage 2003Ann Alcid
 
HTML Tables and Forms
HTML Tables and Forms HTML Tables and Forms
HTML Tables and Forms Hinesh Miyani
 
Html - Tables, Forms and Frames by Telerik Academy
Html - Tables, Forms and Frames by Telerik AcademyHtml - Tables, Forms and Frames by Telerik Academy
Html - Tables, Forms and Frames by Telerik AcademyOgnyan Penkov
 
Chapter 8 - Web Design
Chapter 8 - Web DesignChapter 8 - Web Design
Chapter 8 - Web Designtclanton4
 
Tables and forms with HTML, CSS
Tables and forms with HTML, CSS  Tables and forms with HTML, CSS
Tables and forms with HTML, CSS Yaowaluck Promdee
 
Html_Day_Three(W3Schools)
Html_Day_Three(W3Schools)Html_Day_Three(W3Schools)
Html_Day_Three(W3Schools)Rafi Haidari
 
Web forms and html lecture Number 3
Web forms and html lecture Number 3Web forms and html lecture Number 3
Web forms and html lecture Number 3Mudasir Syed
 
table html web programing
table  html  web programingtable  html  web programing
table html web programinglodhran-hayat
 
Table structure introduction
Table structure introductionTable structure introduction
Table structure introductionnobel mujuji
 

Similar to RDBMS oracle function RDBMSRDBMSRDBMS.pptx (20)

Web design - Working with tables in HTML
Web design - Working with tables in HTMLWeb design - Working with tables in HTML
Web design - Working with tables in HTML
 
v4-html-table-210321161424.pptx
v4-html-table-210321161424.pptxv4-html-table-210321161424.pptx
v4-html-table-210321161424.pptx
 
HTML 5 Tables and Forms
HTML 5 Tables and FormsHTML 5 Tables and Forms
HTML 5 Tables and Forms
 
Web I - 03 - Tables
Web I - 03 - TablesWeb I - 03 - Tables
Web I - 03 - Tables
 
Table in MS Frontpage 2003
Table in MS Frontpage 2003Table in MS Frontpage 2003
Table in MS Frontpage 2003
 
01 HTML-Tables-1.pptx
01 HTML-Tables-1.pptx01 HTML-Tables-1.pptx
01 HTML-Tables-1.pptx
 
html-table
html-tablehtml-table
html-table
 
HTML Tables and Forms
HTML Tables and Forms HTML Tables and Forms
HTML Tables and Forms
 
Html - Tables, Forms and Frames by Telerik Academy
Html - Tables, Forms and Frames by Telerik AcademyHtml - Tables, Forms and Frames by Telerik Academy
Html - Tables, Forms and Frames by Telerik Academy
 
Chapter 8 - Web Design
Chapter 8 - Web DesignChapter 8 - Web Design
Chapter 8 - Web Design
 
Lectuer html2
Lectuer  html2Lectuer  html2
Lectuer html2
 
Html Table
Html TableHtml Table
Html Table
 
Tables and forms with HTML, CSS
Tables and forms with HTML, CSS  Tables and forms with HTML, CSS
Tables and forms with HTML, CSS
 
Html_Day_Three(W3Schools)
Html_Day_Three(W3Schools)Html_Day_Three(W3Schools)
Html_Day_Three(W3Schools)
 
Web forms and html lecture Number 3
Web forms and html lecture Number 3Web forms and html lecture Number 3
Web forms and html lecture Number 3
 
table html web programing
table  html  web programingtable  html  web programing
table html web programing
 
Practicals it
Practicals itPracticals it
Practicals it
 
Table structure introduction
Table structure introductionTable structure introduction
Table structure introduction
 
WEP4 and 5.pptx
WEP4 and 5.pptxWEP4 and 5.pptx
WEP4 and 5.pptx
 
Less08 Schema
Less08 SchemaLess08 Schema
Less08 Schema
 

Recently uploaded

How to Make a Pirate ship Primary Education.pptx
How to Make a Pirate ship Primary Education.pptxHow to Make a Pirate ship Primary Education.pptx
How to Make a Pirate ship Primary Education.pptxmanuelaromero2013
 
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdfssuser54595a
 
How to Configure Email Server in Odoo 17
How to Configure Email Server in Odoo 17How to Configure Email Server in Odoo 17
How to Configure Email Server in Odoo 17Celine George
 
Sanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdfSanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdfsanyamsingh5019
 
ENGLISH5 QUARTER4 MODULE1 WEEK1-3 How Visual and Multimedia Elements.pptx
ENGLISH5 QUARTER4 MODULE1 WEEK1-3 How Visual and Multimedia Elements.pptxENGLISH5 QUARTER4 MODULE1 WEEK1-3 How Visual and Multimedia Elements.pptx
ENGLISH5 QUARTER4 MODULE1 WEEK1-3 How Visual and Multimedia Elements.pptxAnaBeatriceAblay2
 
Hybridoma Technology ( Production , Purification , and Application )
Hybridoma Technology  ( Production , Purification , and Application  ) Hybridoma Technology  ( Production , Purification , and Application  )
Hybridoma Technology ( Production , Purification , and Application ) Sakshi Ghasle
 
Blooming Together_ Growing a Community Garden Worksheet.docx
Blooming Together_ Growing a Community Garden Worksheet.docxBlooming Together_ Growing a Community Garden Worksheet.docx
Blooming Together_ Growing a Community Garden Worksheet.docxUnboundStockton
 
Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111Sapana Sha
 
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxSOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxiammrhaywood
 
Solving Puzzles Benefits Everyone (English).pptx
Solving Puzzles Benefits Everyone (English).pptxSolving Puzzles Benefits Everyone (English).pptx
Solving Puzzles Benefits Everyone (English).pptxOH TEIK BIN
 
EPANDING THE CONTENT OF AN OUTLINE using notes.pptx
EPANDING THE CONTENT OF AN OUTLINE using notes.pptxEPANDING THE CONTENT OF AN OUTLINE using notes.pptx
EPANDING THE CONTENT OF AN OUTLINE using notes.pptxRaymartEstabillo3
 
A Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy ReformA Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy ReformChameera Dedduwage
 
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...Marc Dusseiller Dusjagr
 
Employee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptxEmployee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptxNirmalaLoungPoorunde1
 
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPT
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPTECONOMIC CONTEXT - LONG FORM TV DRAMA - PPT
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPTiammrhaywood
 
internship ppt on smartinternz platform as salesforce developer
internship ppt on smartinternz platform as salesforce developerinternship ppt on smartinternz platform as salesforce developer
internship ppt on smartinternz platform as salesforce developerunnathinaik
 

Recently uploaded (20)

How to Make a Pirate ship Primary Education.pptx
How to Make a Pirate ship Primary Education.pptxHow to Make a Pirate ship Primary Education.pptx
How to Make a Pirate ship Primary Education.pptx
 
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
 
How to Configure Email Server in Odoo 17
How to Configure Email Server in Odoo 17How to Configure Email Server in Odoo 17
How to Configure Email Server in Odoo 17
 
Sanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdfSanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdf
 
ENGLISH5 QUARTER4 MODULE1 WEEK1-3 How Visual and Multimedia Elements.pptx
ENGLISH5 QUARTER4 MODULE1 WEEK1-3 How Visual and Multimedia Elements.pptxENGLISH5 QUARTER4 MODULE1 WEEK1-3 How Visual and Multimedia Elements.pptx
ENGLISH5 QUARTER4 MODULE1 WEEK1-3 How Visual and Multimedia Elements.pptx
 
Staff of Color (SOC) Retention Efforts DDSD
Staff of Color (SOC) Retention Efforts DDSDStaff of Color (SOC) Retention Efforts DDSD
Staff of Color (SOC) Retention Efforts DDSD
 
Hybridoma Technology ( Production , Purification , and Application )
Hybridoma Technology  ( Production , Purification , and Application  ) Hybridoma Technology  ( Production , Purification , and Application  )
Hybridoma Technology ( Production , Purification , and Application )
 
Blooming Together_ Growing a Community Garden Worksheet.docx
Blooming Together_ Growing a Community Garden Worksheet.docxBlooming Together_ Growing a Community Garden Worksheet.docx
Blooming Together_ Growing a Community Garden Worksheet.docx
 
Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111
 
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxSOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
 
Solving Puzzles Benefits Everyone (English).pptx
Solving Puzzles Benefits Everyone (English).pptxSolving Puzzles Benefits Everyone (English).pptx
Solving Puzzles Benefits Everyone (English).pptx
 
EPANDING THE CONTENT OF AN OUTLINE using notes.pptx
EPANDING THE CONTENT OF AN OUTLINE using notes.pptxEPANDING THE CONTENT OF AN OUTLINE using notes.pptx
EPANDING THE CONTENT OF AN OUTLINE using notes.pptx
 
A Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy ReformA Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy Reform
 
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
 
9953330565 Low Rate Call Girls In Rohini Delhi NCR
9953330565 Low Rate Call Girls In Rohini  Delhi NCR9953330565 Low Rate Call Girls In Rohini  Delhi NCR
9953330565 Low Rate Call Girls In Rohini Delhi NCR
 
Employee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptxEmployee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptx
 
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPT
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPTECONOMIC CONTEXT - LONG FORM TV DRAMA - PPT
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPT
 
internship ppt on smartinternz platform as salesforce developer
internship ppt on smartinternz platform as salesforce developerinternship ppt on smartinternz platform as salesforce developer
internship ppt on smartinternz platform as salesforce developer
 
Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝
 
Model Call Girl in Bikash Puri Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Bikash Puri  Delhi reach out to us at 🔝9953056974🔝Model Call Girl in Bikash Puri  Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Bikash Puri Delhi reach out to us at 🔝9953056974🔝
 

RDBMS oracle function RDBMSRDBMSRDBMS.pptx

  • 1. SESSION-(2023-2024) A SEMINAR ON “ORACLE FUNCTION” “SUBMITTED INPARTIAL FULFILLMENT OF THE REQUIREMENT FOR AWARD OF MASTER OF SCIENCE OF COMPUTER SCIENCE” Guided By : Presented By: Mr. Sandeep Dey Sanju Sanjeev Toppo (H.O.D of Computer Application) Msc.Cs III semester 23-11-2023
  • 2. INDEX  HTML TABLE TAG  Table Tag Container  Table Atributes  Table Row  Table Header  Table Data
  • 3. HTML Tables Tag HTML table tag is used to display data in tabular form (row & column). There can be many columns in a row. We can create a table to display data in tabular form, using <table> element, with the help of <tr> , <td>, and <th> elements.
  • 5. <TABLE> Table (made up of rows) <TR> Row (made up of data cells) <TH> Heading Data Cell (Can contain paragraphs, images, lists, forms, tables) <TD> Data Cell (Can contain paragraphs, images, lists, forms, tables)
  • 6. The <table>…</table> Container  <table> defines the beginning and </table> end of a table.  Attributes  background  bgcolor  border  cellspacing  cellpadding  width  height
  • 7. <TABLE> Attributes  BORDER -  Determines the thickness of the table border  Example: <TABLE BORDER = “2”>  CELLPADING -  Determines the distance between the border of a cell and the contents of the cell  Example: <TABLE CELLPADDING = “3”>  CELLSPACING -  Determines the empty spacing between the borders of two adjacent cells  Example: <TABLE CELLSPACING = “1”>
  • 9.  ALIGN -  Possible values: Center, Left, Right  Example: <TH ALIGN = “center”>  BGCOLOR -  Example: <TD BGCOLOR = “red”>  WIDTH -  Example: <TR WIDTH = “40%”>  HEIGHT -  Example: <TABLE HEIGHT = “200”>
  • 11. HTML Code 11 <TABLE border = "1" > <TR> <TH>Indoor</TH> <TH>Outdoor</TH> </TR> <TR> <TD>Squash</TD> <TD>Cricket</TD> </TR> </TABLE> Browser Display Indoor Outdoor Squash Cricket
  • 12. The <tr>…</tr> Container  Defines a table row  Attributes  align  valign  bgcolor
  • 13. <TR> Attributes  VALIGN  Determines the vertical alignment of the contents of all of the cells in a particular row  Possible values: Top, Middle, Bottom  Example: <TR VALIGN = “bottom”>
  • 14. The <td>…</td> Container  Defines a data cell in a table.  Attributes:  align  valign  height  background  bgcolor  height  width  colspan  rowspan
  • 15. <th>…</th> Container  Defines a header cell  Acts just like a <td>…</td> container, except …  The text is normally centered vertically and horizontally AND the text is bold  Attributes are the same as <td>…</td>
  • 16. <TH> & <TD> Attributes  NOWRAP  Extend the width of a cell, if necessary, to fit the contents of the cell in a single line  Example: <TD NOWRAP>  COLSPAN  No. of rows the current cell should extend itself downward  Example: <TD COLSPAN = “2”>  ROWSPAN  The number of columns the current cell should extend itself  Example: <TD ROWSPAN = “5”>  VALIGN  Same as that for <TR>
  • 17. HTML Code 17 <TABLE border=“1” > <TR> <TH colspan=“2”> Indoor Outdoor </TH> </TR> <TR> <TD>Squash</TD> <TD>Cricket</TD> </TR> </TABLE> Browser Display Indoor Outdoor Squash Cricket Example of Colspan
  • 18. HTML Code 18 <TABLE border=“1” > <TR> <TH rowspan=“2”> Indoor Outdoor </TH> </TR> <TR> <TD>Squash</TD> <TD>Cricket</TD> </TR> </TABLE> Browser Display Example of Rowspan Indoor Squash Outdoor Cricket
  • 19. <caption>…</caption> Container  Provides a summary of the table’s purpose  MUST immediately follow <table>  Attributes:  align  summary  valign
  • 20. 20 <TABLE border = "1" > <CAPTION> My favorite sports </CAPTION> <TR> <TD>Squash</TD> <TD>Cricket</TD> </TR> </TABLE> HTML Code Browser Display Squash Cricket My favorite sports Example of caption