Marioabell's Posts
Nairaland Forum › Marioabell's Profile › Marioabell's Posts
1 2 (of 2 pages)
idu1:Thanks bro |
![]() |
I enrolled to study computer science in Federal university of technology Akure (FUTA) but was later given Mathematical Science to study guys please advise me is the course nice and what is the Labour Market saying about it Thanks |
So I just checked all Nigeria universities to found out that the federal university of technology akure has the best portal If you are a web master confirm and see for yourself This is one of the reason that makes it one of the best university for technology. |
Mrkumareze:Yes o |
Institution Federal university of technology Akure Level 100L Course Mathematical Science |
ukenke: |
*No scammers to scam, no robbers to Rob, now SARS has taken over.* _Despite the #ENDSARS which has been on for some months the operation of the so called SARS has worsened this year._ _Two fresh(100L) students of the federal university of technology, Akure have reportedly been robbed of their school fee by the men (#SARS) who are supposed to be protecting the interests of Nigerians_ _One of the student identified as Mayowa a 17year old newly admitted student was on his way to pas his tuition and other fees when SARS men picked him up, drove him round the town for hours and in the end collected the sum of *one hundred and sixteen thousand naira (116k)* from him._ _Double O., the other student lamented on social media "l was picked at UBA Bank arakale in Akure where I was supposed to pay my school fee, my phones were collected and searched, despite the fact that nothing implicating was on my phone, I was threatened to either drop my school fee or be locked up for days. I didn't hesitate in dropping my school fee because I don't want to sleep in cell._ _He therefore urge all students of FUTA to make their payments on campus is they don't want to get robbed by SARS_ _Note: if you are a FUTA student, use the banks in the school to pay your fees, don't go to town to pay, *THE POLICE (SARS) WILL ROB YOU.* those were his words on twitter_ _At this we call on the Federal Government and other concerned personnel to save us from this wicked act of SARS, *#saveFUTAstudents,* *#saveNIGERIAstudents*, |
*BEWARE OF SARS: THEY ARE ROBBERS IN DISGUISE *No scammers to scam, no robbers to Rob, now SARS has taken over.* _Despite the #ENDSARS which has been on for some months the operation of the so called SARS has worsened this year._ _Two fresh(100L) students of the federal university of technology, Akure have reportedly been robbed of their school fee by the men (#SARS) who are supposed to be protecting the interests of Nigerians_ _One of the student identified as Mayowa a 17year old newly admitted student was on his way to pas his tuition and other fees when SARS men picked him up, drove him round the town for hours and in the end collected the sum of *one hundred and sixteen thousand naira (116k)* from him._ _Double O., the other student lamented on social media "l was picked at UBA Bank arakale in Akure where I was supposed to pay my school fee, my phones were collected and searched, despite the fact that nothing implicating was on my phone, I was threatened to either drop my school fee or be locked up for days. I didn't hesitate in dropping my school fee because I don't want to sleep in cell._ _He therefore urge all students of FUTA to make their payments on campus is they don't want to get robbed by SARS_ _Note: if you are a FUTA student, use the banks in the school to pay your fees, don't go to town to pay, *THE POLICE (SARS) WILL ROB YOU.* those were his words on twitter_ _At this we call on the Federal Government and other concerned personnel to save us from this wicked act of SARS, *#saveFUTAstudents,* *#saveNIGERIAstudents*, |
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 |
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. |
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" . Tables contain records (rows) with data. |
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. |
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; |
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 |
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) |
Things you need to have in Participating in this class: * A computer *Text editor (Probably notepad++) *Wampp or Xampp installed on your system |
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. |
Learn Mysql,PhP, here !!!!! |
Wizkid abeg start boy |
L |
1 2 (of 2 pages)

. Tables contain records (rows) with data.