Welcome, Guest: Register On Nairaland / LOGIN! / Trending / Recent / New
Stats: 3,149,875 members, 7,806,511 topics. Date: Tuesday, 23 April 2024 at 05:36 PM

Learn Mysql,php, Here !!!!! - Webmasters - Nairaland

Nairaland Forum / Science/Technology / Webmasters / Learn Mysql,php, Here !!!!! (275 Views)

How To Integrate Paystack Payment Gateway In Website Using PHP and Mysql / Mysql Connect Failed. Access Denied For User 'root'@'localhost' (using Password: / How To Create An E-learning Website In HTML, CSS,PHP And Mysql (2) (3) (4)

(1) (Reply) (Go Down)

Learn Mysql,php, Here !!!!! by Marioabell: 7:41am On Jan 04, 2018
Learn Mysql,PhP, here !!!!!
Re: Learn Mysql,php, Here !!!!! by Marioabell: 7:46am On Jan 04, 2018
Please note this thread is for developers who already has knowledge on front end web development(html,css and javascript) but wants to learn more on back end web devlopment This thread will teach you how to use Mysql- for creating databases and also PHP - used in communicating with the database or server.
Re: Learn Mysql,php, Here !!!!! by Marioabell: 7:48am On Jan 04, 2018
Things you need to have in Participating in this class:

* A computer

*Text editor (Probably notepad++)

*Wampp or Xampp installed on your system
Re: Learn Mysql,php, Here !!!!! by Marioabell: 7:53am On Jan 04, 2018
SQL is a standard language for storing, manipulating and retrieving data in databases.

Our SQL tutorial will teach you how to use SQL in: MySQL (which is probably the best and most popular)
Re: Learn Mysql,php, Here !!!!! by Marioabell: 7:58am On Jan 04, 2018
Introduction to SQL

SQL is a standard language for accessing and manipulating databases.

What is SQL?

SQL stands for Structured Query Language
SQL lets you access and manipulate databases

What Can SQL do?

SQL can execute queries against a database
SQL can retrieve data from a database
SQL can insert records in a database
SQL can update records in a database
SQL can delete records from a database
SQL can create new databases
SQL can create new tables in a database
SQL can create stored procedures in a database
SQL can create views in a database
SQL can set permissions on tables, procedures, and views
Re: Learn Mysql,php, Here !!!!! by Marioabell: 8:03am On Jan 04, 2018
Using SQL in Your Web Site

To build a web site that shows data from a database, you will need:

An RDBMS database program (i.e. MS Access, SQL Server, MySQL)
To use a server-side scripting language, like PHP or ASP
To use SQL to get the data you want
To use HTML / CSS to style the page

RDBMS

RDBMS stands for Relational Database Management System.

RDBMS is the basis for SQL, and for all modern database systems such as MS SQL Server, IBM DB2, Oracle, MySQL, and Microsoft Access.

The data in RDBMS is stored in database objects called tables. A table is a collection of related data entries and it consists of columns and rows.

Example look at the customers table

Select * FROM
Customers;
Re: Learn Mysql,php, Here !!!!! by Marioabell: 8:03am On Jan 04, 2018
Every table is broken up into smaller entities called fields. The fields in the Customers table consist of CustomerID, CustomerName, ContactName, Address, City, PostalCode and Country. A field is a column in a table that is designed to maintain specific information about every record in the table.

A record, also called a row, is each individual entry that exists in a table. For example, there are 91 records in the above Customers table. A record is a horizontal entity in a table.

A column is a vertical entity in a table that contains all information associated with a specific field in a table.
Re: Learn Mysql,php, Here !!!!! by Marioabell: 8:07am On Jan 04, 2018
SQL Syntax

Database Tables
A database most often contains one or more tables. Each table is identified by a name (e.g. "Customers" or "Orders"wink. Tables contain records (rows) with data.
Re: Learn Mysql,php, Here !!!!! by Marioabell: 8:10am On Jan 04, 2018
Keep in Mind That...
SQL keywords are NOT case sensitive: select is the same as SELECT
In this tutorial we will write all SQL keywords in upper-case.

Semicolon after SQL Statements?
Some database systems require a semicolon at the end of each SQL statement.

Semicolon is the standard way to separate each SQL statement in database systems that allow more than one SQL statement to be executed in the same call to the server.

In this tutorial, we will use semicolon at the end of each SQL statement.
Re: Learn Mysql,php, Here !!!!! by Marioabell: 8:14am On Jan 04, 2018
Some of The Most Important SQL Commands
SELECT - extracts data from a database
UPDATE - updates data in a database
DELETE - deletes data from a database
INSERT INTO - inserts new data into a database
CREATE DATABASE- creates a new database
ALTER DATABASE - modifies a database
CREATE TABLE - creates a new table
ALTER TABLE - modifies a table
DROP TABLE - deletes a table
CREATE INDEX - creates an index (search key)
DROP INDEX - deletes an index

(1) (Reply)

Call An Author Today For Your Blog Posts @ A Cheaper Rate / Highly Responsive Website Design With Mobile Friendly Layout / How To Bring A Lost Window Back To Your

(Go Up)

Sections: politics (1) business autos (1) jobs (1) career education (1) romance computers phones travel sports fashion health
religion celebs tv-movies music-radio literature webmasters programming techmarket

Links: (1) (2) (3) (4) (5) (6) (7) (8) (9) (10)

Nairaland - Copyright © 2005 - 2024 Oluwaseun Osewa. All rights reserved. See How To Advertise. 19
Disclaimer: Every Nairaland member is solely responsible for anything that he/she posts or uploads on Nairaland.