Unlock the Power of Open Source! The " Linux New " SWAYAM Plus Course is live now and about 2,500 learners have already registered for it.

If you are a registered learner, the forum page is now active. Visit the page and get all your questions answered.

MySQL Part 3 - Hindi

This is a sample video. To access the full content,
please Login

1990 visits



Outline:

MySQL (Part 3) डेटाबेस में कुछ डेटा लिखना (INSERT और UPDATE क्वेरीज़) mysql_query('TYPE_HERE_YOUR_MYSQL_QUERY') - अपने डेटाबेस पर विशेष क्वेरीज़ रन करने के लिए इस फंक्शन का प्रयोग होता है। INSERT QUERY – टेबल्स वैल्यूज़ में समावेश करना ('att1', 'att2' , 'att3', 'att4' ,'att5') //टेबल में डेटा समावेश करना। UPDATE QUERY - UPDATE table_name SET att1='xyz' //डेटाबेस की टेबल में संचित मौजूदा वैल्यूज़ को अपडेट करता है।