Quantum Internet Benefits

Image
  The quantum internet is a network of quantum computers that are connected together using quantum communication. It has the potential to revolutionize many industries, including: Secure communications: The quantum internet would be inherently secure, as it would be impossible to eavesdrop on quantum communications without being detected. This could be used for applications such as secure financial transactions, government communications, and military applications. Quantum computing: The quantum internet would allow quantum computers to be connected together, which would allow them to solve problems that are currently impossible for classical computers. This could be used for applications such as drug discovery, financial modeling, artificial intelligence, and materials science. Quantum sensors: The quantum internet could be used to connect quantum sensors together, which would allow them to create a global network of sensors that could be used to monitor the environment, detect earthq

Installing MySQL server in Linux Ubuntu 21 using shell scripting and running basic SQL commands

Hi In this blog post I am sharing about to installing MySQL server in linux ubuntu 21 using shell scripting 
 In that shell scripting include that install package related dependencies for MySQL server that will address compatabilty with linux related packages like debians. 
 After that run the shell script command using exexcutable file like chmod +x filename.sh and then execute the shell script file which has the sudo commands in it. 
 Once completed executing the command, MySQL server will be installed in your linux ubunutu 21 OS.

 Check the MySQL version using "mysql -v" 

 Run the SQL commands using mysql in that linux terminal I have used the below SQL commands 
 > Use [databasename] 
> show [table_name] 
> show columns from [table_name] 

 Watch this below video for more details

Comments

Popular posts from this blog

Jsp / Java Password Encrypt and Decrypt Example

SQL Script : Adventure works database setup and Select query, list of tables #100daysofsql

How to Hide Gridview and Show the selected gridview row details in Form View using ASP.NET C#