Database Basics |
- Database
- Tables
- Fields
- Rows
> Open PHPMyAdmin > SQL
CREATE DATABASE QWC
Write Query and click GO. Now QWC database has been created.
Query OK, 1 row affected (0.01 sec)Now You need to use this database. Use this SQL query.
USE QWC;
Write Query and click GO. Now you are using QWC database.
Database changedNow you need to create tables. For tables, you need to write query as
CREATE TABLE inform(
name varchar( 30 ) ,
age int( 2 ) ,
phone int( 15 ) ,
address varchar( 50 )
)
It is like
Create Table [Table Name]( [Field Name] [Field Type] ([Field Limit]) , [-> Next Field] );Write Query and click GO.
Query OK, 0 rows affected (0.01 sec)Now You need to insert value. 1st you need to check that your table is selected. For value, you need to use this query as.
INSERT INTO `inform`(`name`, `age`, `phone`, `address`)
VALUES ('QWC',22,03234209211,'Pakistan')
It is like
But here you need to remind that you need to write CHR, Text type values within single or double quotes.Insert into table (colum1, colum2, colum3) values (value1, valu2, value3, value4);
Post a Comment
Give your reviews about this blog. Leave your comments. what do you think about this post?
Comments Description is given below:
1) I love to read comments, but do not spam.
2) Like this blog and also tweet its posts.
3) You can use some xHTML tags.
4) All Comments are Do Follow, Please try to use blog professionally.
5) Mention Your Name below the comment.
6) You can also suggest for improvement.
7) Do not forget to subscribe Samee Articles blog.
---------------------------------------
Thanks for visiting QWC.Me.
==========================================
For free guidelines contact me on SEO Expert | Samee Ullah Feroz is online there.
==========================================
Best Regards