![A Guide to SQL](https://www.bartleby.com/isbn_cover_images/9781111527273/9781111527273_largeCoverImage.gif)
a.
“LENGTH” function:
- The “LENGTH()” function is used to return the length of a string that is return the number of characters in a given string.
- The syntax for “LENGTH()” function is
LENGTH(string)
- The parameter “string” implies the any string or any column name from specific table.
Example:
The example of “LENGTH()” function is given below:
CREATE TABLE STUDENT_NAMES(Student_ID integer PRIMARY KEY, Name text);
INSERT INTO STUDENT_NAMES VALUES(101,'John');
INSERT INTO STUDENT_NAMES VALUES(201,'Merry');
INSERT INTO STUDENT_NAMES VALUES(301,'Rose');
INSERT INTO STUDENT_NAMES VALUES(401,'Watson');
SELECT Name, LENGTH(Name) AS LengthOfName FROM STUDENT_NAMES;
Explanation:
The above query is used to display the length of each student name from “STUDENT_NAMES” table.
- User can create a table “STUDENT_NAMES” using “CREATE” and then insert the data into “STUDENT_NAMES” table using “INSERT” command.
- Using “SELECT” command, user can display the student name and its length.
- User can compute the length of each student name using “LENGTH” function.
- After that, the computed column is represented by “LengthOfName” with the help of “AS” operator.
When the query “SELECT Name, LENGTH(Name) AS LengthOfName FROM STUDENT_NAMES;” is executed, the following output will be displayed.
| Name | LengthOfName |
|--------|--------------|
| John | 4 |
| Merry | 5 |
| Rose | 4 |
| Watson | 6 |
“SUBSTR” function:
- The “SUBSTR()” function is used to extract a substring from a given string.
- The syntax for “SUBSTR()” function is
SUBSTR(sample_string, start_position, length)
- From the given syntax,
- The parameter “sample_string” implies the any string to extract from.
- The parameter “start_position” implies the starting position of given string.
- The parameter “length” implies number of characters to extract from the given string.
Example:
The example of “SUBSTR()” function is given below:
SELECT SUBSTR("Example SQL Query", 9, 3);
When the above query executed, the following output will be displayed.
Output: SQL
“INITCAP” function:
- The “INITCAP()” function is used to convert the first character of each word in the string to upper case character.
- The syntax for “INITCAP()” function is
INITCAP(sample_string)
- The parameter “sample_string” implies the any string.
Example:
The example of “INITCAP()” function is given below:
SELECT INITCAP('sample
Explanation:
- The above query is used to change the first letter of each word to upper case using “INITCAP” function.
- The computed column that is final result is represented by “Changed Word”.
- From the given query, the “DUAL” is a table which is automatically generated by Oracle
Database along with the data dictionary.- The “DUAL” table contains one column and one row. The column is defined to be “VARCHAR2(1)” and a row with a value “x”.
When the above query is executed, the following output will be displayed.
Output of the given Query:
| Changed String |
|--------------------|
| Sample Programming |
Three functions in Oracle, SQL Server and Access:
- “No”, the three functions are not same in SQL Server and access.
- Reasons for these condition.
- For Oracle:
- The functions “LENGTH”, “SUBSTR” and “INITCAP” are same for the Oracle.
- For SQL server:
- The function “LEN” is used to returns the length of the particular string.
- The “SUBSTRING” function is used to return a substring from a given string.
- The “INITCAP” function is not available in the SQL server.
- For Access:
- The function “LEN” is used to returns the length of the particular string.
- The “MID” function is used to return a substring from a given string.
- The “INITCAP” function is not available in Access.
- For Oracle:
Three functions in Oracle:
“LENGTH” function:
- The “LENGTH()” function is used to return the length of a string that is return the number of characters in a given string.
- The syntax for “LENGTH()” function is
LENGTH(string)
- The parameter “string” implies the any string or any column name from specific table.
Example:
The example of “LENGTH()” function is given below:
SELECT LENGTH('SQL Programming Concept') "Length of Characters" FROM DUAL;
Explanation:
- The above query is used to display the length of character from given string “'SQL Programming Concept” using “LENGTH” function.
- The computed column that is final result is represented by “Length of Characters”.
- From the given query, the “DUAL” is a table which is automatically generated by Oracle Database along with the data dictionary.
- The “DUAL” table contains one column and one row. The column is defined to be “VARCHAR2(1)” and a row with a value “x”.
When the above query is executed, the following output will be displayed.
Output of the given Query:
| Length of Characters |
|----------------------|
| 23 |
“SUBSTR” function:
- The “SUBSTR()” function is used to extract a substring from a given string.
- The syntax for “SUBSTR()” function is
SUBSTR(sample_string, start_position, length)
- From the given syntax,
- The parameter “sample_string” implies the any string to extract from.
- The parameter “start_position” implies the starting position of given string.
- The parameter “length” implies number of characters to extract from the given string.
Example:
The example of “SUBSTR()” function is given below:
SELECT SUBSTR('Example SQLQuery Result', 9, 8) "SubString" FROM DUAL;
Explanation:
- The above query is used to display the substring from the given string “'Example SQLQuery Result” using “SUBSTR” function.
- The computed column that is final result is represented by “SubString”.
- From the given query, the “DUAL” is a table which is automatically generated by Oracle Database along with the data dictionary.
- The “DUAL” table contains one column and one row. The column is defined to be “VARCHAR2(1)” and a row with a value “x”.
When the above query executed, the following output will be displayed.
Output of the given Query:
| SubString |
|-----------|
| SQLQuery |
“INITCAP” function:
- The “INITCAP()” function is used to convert the first character of each word in the string to upper case character.
- The syntax for “INITCAP()” function is
INITCAP(sample_string)
- The parameter “sample_string” implies the any string.
Example:
The example of “INITCAP()” function is given below:
SELECT INITCAP('sample programming') "Changed Word" FROM DUAL;
Explanation:
- The above query is used to change the first letter of each word to upper case using “INITCAP” function.
- The computed column that is final result is represented by “Changed Word”.
- From the given query, the “DUAL” is a table which is automatically generated by Oracle Database along with the data dictionary.
- The “DUAL” table contains one column and one row. The column is defined to be “VARCHAR2(1)” and a row with a value “x”.
When the above query is executed, the following output will be displayed.
Output of the given Query:
| Changed String |
|--------------------|
| Sample Programming |
Three functions in SQL Server:
“LEN” function:
- The “LEN()” function is used to return the length of a string that is return the number of characters in a given string.
- The syntax for “LEN()” function is
LEN(string)
- The parameter “string” implies the any string.
Example:
The example of “LEN()” function is given below:
SELECT LEN('SQL Programming Concept');
Explanation:
- The above query is used to display the length of character from given string “'SQL Programming Concept” using “LEN” function.
When the above query is executed, the following output will be displayed.
Output of the given Query:
23
“SUBSTRING” function:
- The “SUBSTRING()” function is used to extract a substring from a given string.
- The syntax for “SUBSTRING()” function is
SUBSTRING(sample_string, start_position, length)
- From the given syntax,
- The parameter “sample_string” implies the any string to extract from.
- The parameter “start_position” implies the starting position of given string.
- The parameter “length” implies number of characters to extract from the given string.
Example:
The example of “SUBSTR()” function is given below:
SELECT SUBSTRING('Example SQLQuery Result', 9, 8) AS SubString;
Explanation:
- The above query is used to display the substring from the given string “'Example SQLQuery Result” using “SUBSTRING” function.
- The computed column that is final result is represented by “SubString” with the help of “AS” operator.
When the above query executed, the following output will be displayed.
Output of the given Query:
SubString
SQLQuery
“INITCAP” function:
This function is not available in SQL server.
Three functions in Access:
“LEN” function:
- The “LEN()” function is used to return the length of a string that is return the number of characters in a given string.
- The syntax for “LEN()” function is
LEN(string/variable name)
- The parameter “string” implies the any string or any column name from specific table.
Example:
The example of “LEN()” function is given below:
SELECT LEN('SQL Programming Concept') AS Length_Of_String;
Explanation:
- The above query is used to display the length of character from given string “'SQL Programming Concept” using “LEN” function.
- The computed column that is final result is represented by “Length_Of_String” with the help of “AS” operator.
When the above query is executed, the following output will be displayed.
Output of the given Query:
Length_Of_String
23
“MID” function:
- The “MID()” function is used to extract a substring from a given string.
- The syntax for “MID()” function is
MID(sample_string, start_position, length)
- From the given syntax,
- The parameter “sample_string” implies the any string to extract from.
- The parameter “start_position” implies the starting position of given string.
- The parameter “length” implies number of characters to extract from the given string.
Example:
The example of “MID()” function is given below:
CREATE TABLE STUDENT_NAMES(Student_ID integer PRIMARY KEY, Name text);
INSERT INTO STUDENT_NAMES VALUES(301,'John Merry');
INSERT INTO STUDENT_NAMES VALUES(401,'Rose Lilly');
SELECT Name, MID(STUDENT_NAMES, 6, 5) AS SubString_Names FROM STUDENT_NAMES;
Explanation:
The above query is used to display the sub string each student name from “STUDENT_NAMES” table.
- User can create a table “STUDENT_NAMES” using “CREATE” and then insert the data into “STUDENT_NAMES” table using “INSERT” command.
- Using “SELECT” command, user can display the student name and its length.
- User can compute the sub string of each student name using “MID” function.
- After that, the computed column is represented by “SubString_Names” with the help of “AS” operator.
When the above query executed, the following output will be displayed.
Output of the given Query:
SubString_Names
Merry
Lilly
“INITCAP” function:
This function is not available in access.
![Check Mark](/static/check-mark.png)
Explanation of Solution
Oracle SQL query to display characters from the “TYPE” column in the “TRIP” table:
The Oracle SQL query to display three characters on the left from the “TYPE” column of the “TRIP” table is given below:
SELECT SUBSTR(TYPE,0,3) "SubString from TYPE Column" FROM TRIP;
Explanation:
The above query is used to display three characters on the left from the “TYPE” column of the “TRIP” table.
- Using “SUBSTR” function, user can display the three characters on the left from the “TYPE” column with three arguments “TYPE” column, start position “0” and number of character to extract “3”.
- The computed column is represented by “SubString from TYPE Column”.
- When the above query is executed, the following output will be displayed.
Screenshot of output:
Explanation of Solution
Oracle SQL query to display characters from the “START_LOCATION” column of the “TRIP” table:
The Oracle and SQL query for starting at the fourth character from the left, display the next five characters in the “START_LOCATION” column of the “TRIP” table is given below:
SELECT SUBSTR(START_LOCATION,4,5) "SubString of START_LOCATION" FROM TRIP;
Explanation:
The above query is used to display the given characters from “START_LOCATION” column of the “TRIP” table.
- Using “SUBSTR” function, user can display the given characters from the “START_LOCATION” column with three arguments “START_LOCATION” column, start position “3” and number of character to extract “5”.
- The computed column is represented by “SubString of START_LOCATION”.
- When the above query is executed, the following output will be displayed.
![Check Mark](/static/check-mark.png)
Screenshot of output:
Want to see more full solutions like this?
Chapter 8 Solutions
A Guide to SQL
- Can you please solve this. Thanksarrow_forwardcan you solve this pleasearrow_forwardIn the previous homework scenario problem below: You have been hired by TechCo to create and manage their employee training portal. Your first task is to develop a program that will create and track different training sessions in the portal. Each training session has the following properties: • A session ID (e.g., "TECH101", "TECH205") • A session title (e.g., "Machine learning", "Advanced Java Programming") • A total duration in hours (e.g., 5.0, 8.0) • Current number of participants (e.g., 25) Each session must have at least a session ID and a total duration and must met the following requirements: • The maximum participant for each session is 30. • The total duration of a session must not exceed 10 hours. • The current number of participants should never exceed the maximum number of participants. Design an object-oriented solution to create a data definition class(DDC) and an implementation class for the session object. In the DDC, a session class must include: • Constructors to…arrow_forward
- In the previous homework scenario problem below: You have been hired by TechCo to create and manage their employee training portal. Your first task is to develop a program that will create and track different training sessions in the portal. Each training session has the following properties: • A session ID (e.g., "TECH101", "TECH205") • A session title (e.g., "Machine learning", "Advanced Java Programming") • A total duration in hours (e.g., 5.0, 8.0) • Current number of participants (e.g., 25) Each session must have at least a session ID and a total duration and must met the following requirements: • The maximum participant for each session is 30. • The total duration of a session must not exceed 10 hours. • The current number of participants should never exceed the maximum number of participants. Design an object-oriented solution to create a data definition class(DDC) and an implementation class for the session object. In the DDC, a session class must include: • Constructors to…arrow_forwardSend me the lexer and parserarrow_forwardHere is my code please draw a transition diagram and nfa on paper public class Lexer { private static final char EOF = 0; private static final int BUFFER_SIZE = 10; private Parser yyparser; // parent parser object private java.io.Reader reader; // input stream public int lineno; // line number public int column; // column // Double buffering implementation private char[] buffer1; private char[] buffer2; private boolean usingBuffer1; private int currentPos; private int bufferLength; private boolean endReached; // Keywords private static final String[] keywords = { "int", "print", "if", "else", "while", "void" }; public Lexer(java.io.Reader reader, Parser yyparser) throws Exception { this.reader = reader; this.yyparser = yyparser; this.lineno = 1; this.column = 0; // Initialize double buffering buffer1 = new char[BUFFER_SIZE]; buffer2 = new char[BUFFER_SIZE]; usingBuffer1 = true; currentPos = 0; bufferLength = 0; endReached = false; // Initial buffer fill fillBuffer(); } private…arrow_forward
- Create 2 charts using this data. One without using wind speed and one including max speed in mph. Write a Report and a short report explaining your visualizations and design decisions. Include the following: Lead Story: Identify the key story or insight based on your visualizations. Shaffer’s 4C Framework: Describe how you applied Shaffer’s 4C principles in the design of your charts. External Data Integration: Explain the second data and how you integrated it with the Halloween dataset. Compare the two datasets. Attach screenshots of the two charts (Bar graph or Line graph) The Shaffer 4 C’s of Data Visualization Clear - easily seen; sharply defined• who's the audience? what's the message? clarity more important than aestheticsClean - thorough; complete; unadulterated, labels, axis, gridlines, formatting, right chart type, colorchoice, etc.Concise - brief but comprehensive. not minimalist but not verboseCaptivating - to attract and hold by beauty or excellence does it capture…arrow_forwardHow can I resolve the following issue?arrow_forwardI need help to resolve, thank you.arrow_forward
- A Guide to SQLComputer ScienceISBN:9781111527273Author:Philip J. PrattPublisher:Course Technology PtrDatabase Systems: Design, Implementation, & Manag...Computer ScienceISBN:9781305627482Author:Carlos Coronel, Steven MorrisPublisher:Cengage LearningDatabase Systems: Design, Implementation, & Manag...Computer ScienceISBN:9781285196145Author:Steven, Steven Morris, Carlos Coronel, Carlos, Coronel, Carlos; Morris, Carlos Coronel and Steven Morris, Carlos Coronel; Steven Morris, Steven Morris; Carlos CoronelPublisher:Cengage Learning
![Text book image](https://www.bartleby.com/isbn_cover_images/9781111527273/9781111527273_smallCoverImage.gif)
![Text book image](https://www.bartleby.com/isbn_cover_images/9781305627482/9781305627482_smallCoverImage.gif)
![Text book image](https://www.bartleby.com/isbn_cover_images/9781285196145/9781285196145_smallCoverImage.gif)
![Text book image](https://www.bartleby.com/isbn_cover_images/9781305251038/9781305251038_smallCoverImage.gif)