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 - Kannada

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

631 visits



Outline:

MySQL (Part 3) ಡೇಟಾಬೇಸ್ ನಲ್ಲಿ ಡೇಟಾಅನ್ನು ಸೇರಿಸುವುದು (INSERT ಮತ್ತು UPDATE ಕ್ವೈರಿಗಳು) mysql_query('TYPE_HERE_YOUR_MYSQL_QUERY') – ನಮ್ಮ ಡೇಟಾಬೇಸ್ ನಲ್ಲಿ ನಿರ್ದಿಷ್ಟವಾದ ಕ್ವೈರಿಗಳನ್ನು ರನ್ ಮಾಡಲು ಈ ಫಂಕ್ಷನ್ ಅನ್ನು ಬಳಸಲಾಗುತ್ತದೆ. INSERT ಕ್ವೈರಿ - INSERT into table values ('att1', 'att2' , 'att3', 'att4' ,'att5') // ಇದು ಟೇಬಲ್ ನಲ್ಲಿ ಡೇಟಾವನ್ನು ಸೇರಿಸುವುದು. UPDATE ಕ್ವೈರಿ - UPDATE table_name SET att1='xyz' // ಇದು ಡೇಟಾಬೇಸ್ ನ ಟೇಬಲ್ ನಲ್ಲಿ ಈಗಾಗಲೇ ಇರುವ ವ್ಯಾಲ್ಯುಗಳನ್ನು ಅಪ್ಡೇಟ್ ಮಾಡುವುದು.