Gds vocabulary session

by Gd sonu singh azad | May 25th 2022
   Daily current vocab      press 👉 New Vcb In this competitive world, 'Vocabulary' plays a vital role in every exam. Several banking and Government exams are round the corner like IBPS PO, Clerk, IBPS RRB, SSC-M...

Banking awareness section for all exams like RRB, IBPS clerk/PO , SBI clerk/PO , RBI ,etc....

by Gd sonu singh azad | May 25th 2022
                                   Banking awareness                                express                               This section of 2022 provide every aspirants candidates Importent banking awareness questions fo...
SQL online tutorial || Gds tech (EMS) 21; Most SQL implementations include support for issuing statements at the command line, through a graphical user interface, by using SQL programs or through application programming interfaces to access SQL databases using other programming languages. Commonly used SQL commands with examples Most SQL commands are used with operators to modify or reduce the scope of data operated on by the statement. Some commonly used SQL commands, along with examples of SQL statements using those commands, follow. SQL SELECT. The SELECT command is used to get some or all data in a table. SELECT can be used with operators to narrow down the amount of data selected: SELECT title, author, pub_dateFROM catalogWHERE pub_date = 2021; This example could be used by a publisher to select the title, author and publication date columns from a table named catalog. SQL CREATE. The CREATE command is used to create a new SQL database or SQL table. Most versions of SQL create a new database by creating a new directory, in which tables and other database objects are stored as files. The following CREATE DATABASE statement creates a new SQL database named Human_Resources: CREATE DATABASE Human_Resources; The CREATE TABLE command is used create a table in SQL. The following statement creates a table named Employees that has three columns: employee_ID, last_name and first_name, with the first column storing integer (int) data and the other columns storing variable character data of type varchar and a maximum of 255 characters. CREATE TABLE Employees (    employee_ID int,    last_name varchar(255),    first_name varchar(255)); SQL DELETE. The DELETE command removes rows from a named table. In this example, all records of employees with the last name Smithee are deleted:DELETE FROM Employees WHERE last_name='Smithee';This statement returns the number of rows deleted when it finishes running.SQL INSERT INTO. The INSERT INTO command is used to add records into a database table. The following statement adds a new record into the Employees table:INSERT INTO Employees (    last_name,    first_name)VALUES (    'Alan',    'Smithee');SQL UPDATE. The UPDATE command is used to make changes to rows or records in a specific table. For example, the following statement updates all records that include a last_name value of Smithee by changing the name to Smith:UPDATE EmployeesSET last_name = 'Smith',WHERE last_name = 'Smithee';SQL statements can use loops, variables and other components of a programming language to update records based on different criteria.SQL-on-Hadoop toolsSQL-on-Hadoop query engines are a newer offshoot of SQL that enable organizations with big data architectures built around Hadoop data stores to use SQL as a querying language and enable database professionals to use a familiar query language instead of having to use more complex and less familiar languages -- in particular, the MapReduce programming environment for developing batch processing applications.More than a dozen SQL-on-Hadoop tools are available from Hadoop distribution providers and other vendors; many of them are open source software or commercial versions. In addition, the Apache Spark processing engine, which is often used in conjunction with Hadoop, includes a Spark SQL module that similarly supports SQL-based programming.Not all SQL-on-Hadoop tools support all of the functionality offered in relational implementations of SQL. But SQL-on-Hadoop tools are a regular component of Hadoop deployments, as companies look to get developers and data analysts with SQL skills involved in programming big data applications ">

SQL online tutorial || Gds tech (EMS)

by Gd sonu singh azad | June 6th 2022
Structured Query Language (SQL) Structured Query Language (SQL) is a standardized programming language that is used to manage relational databases and perform various operations on the data in them. What is Structure...
Search Website

Search

Subscribe

Newsletter

WhatsApp Google Map

Safety and Abuse Reporting

Thanks for being awesome!

We appreciate you contacting us. Our support will get back in touch with you soon!

Have a great day!

Are you sure you want to report abuse against this website?

Please note that your query will be processed only if we find it relevant. Rest all requests will be ignored. If you need help with the website, please login to your dashboard and connect to support