नमस्कार मित्रांनो Techy Prasad मध्ये आपलं स्वागत आहे आज आपण PHP चे Crud Operations बघणार आहोत Crud चा full फॉर्म आहे
C : Create(insert)
R: Read(fetch)
U: Update
D: Delete
तर चला मित्रांनो आपण सर्व operations series वाईज बघू१. Create (Insert)-: Insert चा अर्थ होतो कि user द्वारे एंटर केली गेलेली information डेटाबेस मध्ये save करणे तर डेटा इन्सर्ट करण्यासाठी आपल्याला SQL Query लिहायला लागते
Syntax :
$query = "insert into table_name(column,column,---,column n) values(value1, value, ---, value n)";
e.g. $query = "insert into student (Name,Gender,Roll) values("prasad ","Male ",12 )";
वर दिलेली SQL Query डेटाबेस टेबल चे columns Name,Gender,Roll ह्या columns मध्ये डेटा इन्सर्ट करेल
२. Read (Fetch ) -: Fetch चा अर्थ होतो कि user द्वारे एंटर केलीगेलेली information ला fetch /read करणे
Syntax :
$query = "select * from table_name ";
where * = All Columns
e.g. $query = "select * from student";
वर दिलेली SQL Query डेटाबेस टेबल चे सर्व column fetch करेल
e.g. $query = "delete * from student";
वर दिलेली SQL Query डेटाबेस टेबल मधले सर्व रेकॉर्डस् delete करेल
where * = All Columns
e.g. $query = "select * from student";
वर दिलेली SQL Query डेटाबेस टेबल चे सर्व column fetch करेल
३. Update -: Update चा अर्थ होतो कि user द्वारे एंटर केलीगेलेली information ला modify /update करणे
Syntax :
$query = "update table_name column_1 = value1, column_2 = value 2 where column_name =value ";
e.g. $query = "update student name ="prasad", gender ="male" where id = 1 ";
वर दिलेली SQL Query डेटाबेस टेबल मधल्या id १ ला update करेल
$query = "delete from table_name ";e.g. $query = "update student name ="prasad", gender ="male" where id = 1 ";
वर दिलेली SQL Query डेटाबेस टेबल मधल्या id १ ला update करेल
४. Delete -: Delete चा अर्थ होतो कि user द्वारे एंटर केलीगेलेली information ला delete करणे
Syntax :
e.g. $query = "delete * from student";
वर दिलेली SQL Query डेटाबेस टेबल मधले सर्व रेकॉर्डस् delete करेल
0 Comments
Comment Rules :
1. Do not post Adult/illegal Links.
2. Try to comment in only मराठी / English Language.
3. Do not post other website's links which are useless.
4. Your Comment should be based on the Topic for other queries.
5. Do not use Abusive Language.
6. Respect each other.
Thank You for following the rules. Please Comment....