Question

In: Computer Science

my sql

my sql

Solutions

Expert Solution

MySQL is a free and open source relational database technology that has relations in between the tables to make the applications that are compliance with it.

MySQL supports different kind of relationship in between the table and also supports the transaction management so it's no doubt in saying that it's best database for your application.

It was written in C & C++ and was developed by Oracle Corporation.

There are many persons by now from the MySQL and you can interact with the MySQL either with the command line or some graphical tools as well.


What's the need of MySQL?

Well, all the application have certain entities in it such as if I take an example of a Bank website then there are many entities in it such as customer, clerk, loan_taker, insurance etc and all having some relationships in between them because when you get the data then it will not come from a single table instead it will come from a multiple tables.

I assume that you want only a high level knowledge of it.

So that was about MySQL.

It uses the SQL language to interact with the MySQL shell.

There are many statements as well to fetch records from the table.

For example, if I want to fetch the students whose name is "John" then I write this query to get them.

SELECT * FROM STUDENTS WHERE FIRSTNAME="John";

This will give me the result of all the students whose first name is John


Related Solutions

IN MY SQL: - Display each Author’s ID, first and last names and the total number...
IN MY SQL: - Display each Author’s ID, first and last names and the total number of pages for all of the Books they have written. - Display each Book genre as well as the number of Books written in that genre with the column header “Number Of Books” - Display the Author’s first and last name, as well as their ID, and the Book title and number of pages for all of the books they have written that have...
So currently I am working on some SQL with python which is linked to my database...
So currently I am working on some SQL with python which is linked to my database and I am stuck on a split problem. So in the program it connects to the database and then next you input either list, add, update, remove or allocate. So lets say I want to add a new data into the database you just need to write: update -name='Ava - #2' -class=2. After you type this there is a variable called val which does...
My SQL Data Model Delta Airlines wants to track certain information about its fleet of planes....
My SQL Data Model Delta Airlines wants to track certain information about its fleet of planes. Delta’s planes go in for servicing and checks every 6 months. These checks are conducted by trained maintenance engineers. During this process there can be one or several issues related to the plane that are identified and noted. Delta wants to track information about the planes, the issues identified with the plane and the maintenance engineer who has identified these issues. Engineers may identify...
What is an SQL? Is SQL a standard? Explain. 1B- What are the two categories of...
What is an SQL? Is SQL a standard? Explain. 1B- What are the two categories of SQL statements. Give examples for each category. 2- Consider the logical schema below: PET_OWNER(OWNER_ID [N, 18], FIRST_NAME [A, 250], LAST_NAME [A, 250], PHONE [A, 50], EMAIL [A, 250]) PET(PET_ID [N, 18], PET_NAME [N, 18], PET_TYPE [A, 20], BREED [A, 50], DOB [D, 10], OWNER_ID [N, 18]) A- Write an SQL statement to create a database named PET_OWNER_DB B- Write SQL statements to create PET_OWNER...
Workshop: SQL Simple Retrieval For this workshop, you are to submit the SQL statements. Do not...
Workshop: SQL Simple Retrieval For this workshop, you are to submit the SQL statements. Do not submit the output produced by running the query. However, you may wish to examine the output to ensure the correctness of the query. When writing a query, do not rely exclusively on the current content of the database. Remember that when working with a real-world company’s database there can be far too many rows to allow you to visually examine the content of a...
PL/SQL Write a PL/SQL block, using a While Loop, to calculate and print the sum of...
PL/SQL Write a PL/SQL block, using a While Loop, to calculate and print the sum of the odd integers from 10 to 120 inclusive. (Hint: 11 + 13 + 15 + . . . + 97 + 99)
Which of the following is a database client software? Microsoft SQL Server 2017 Developer Microsoft SQL...
Which of the following is a database client software? Microsoft SQL Server 2017 Developer Microsoft SQL Server Management Studio Microsoft SQL Server Configuration Manager SQL Server Analysis Service Compared to Data Warehousing approach, the following are disadvantages of query-driven data integration approach, EXCEPT: __________. competition with local processing at source delay in query processing waste of storage space inefficient and potentially expensive for frequent queries What does OLAP stand for? Olympic Linear Algebra Problem On-Line Amazon Platform On-Line Analytical Processing...
SQL Trigger problem When attemptiing to Create or Replace a trigger I get the error "sql...
SQL Trigger problem When attemptiing to Create or Replace a trigger I get the error "sql warning trigger created with compilation errors". Trigger: CREATE OR REPLACE TRIGGER Late_Fees after UPDATE ON InventoryItem FOR EACH ROW DECLARE late_fee number; num_days number; BEGIN num_days:= to_date(:old.ReturnDate)-TO_DATE(:old.DateDue); select IntValue into late_fee from ApplicationSettings where Setting='Daily Late Fee'; :new.fee := (late_fee)*(num_days); END; / commit; Table: create table Rental( INVID int Primary key, LoanDate date, PatronID int, DueDate date, ReturnDate date, constraint PatronID_FK Foreign key (PatronID)...
Basic SQL Use the following schema to answer the queries below using SQL DEVICE [dno, dtype,...
Basic SQL Use the following schema to answer the queries below using SQL DEVICE [dno, dtype, price] PROVIDER [pno, pname, web] SERVICE [dno, pno, servicedate] SERVICE.dno references DEVICE.dno SERVICE.pno references PROVIDER.pno bold is underline. a) Find the dno for the most expensive device b) Find all providers that have the work fast in the name c) Find the number of different device types (dtype) d) Give all details of devices with price more than $400
Need SQL Tables Final Project should be included ER, NER, Table diagrams and SQL statements. The...
Need SQL Tables Final Project should be included ER, NER, Table diagrams and SQL statements. The final project is about developing an auction Web site. The details are as follows: BA is an online auction Web site. People can buy and sell items in this Web site. Buyers are people who like to buy items, and sellers are people who like to sell items. •Each seller can sell items. •Each item has a bidding start time, an end time, and...
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT