Computer Science
The command used for modifying the records is:
- update()
- add()
- updateall()
- none of these
Python MySQL
1 Like
Answer
update()
Reason — The command used for modifying or updating the records in a table is update().
Answered By
2 Likes
Related Questions
Pick the correct username used for logging in database.
- root
- local
- directory
- host
Name the host name used for signing in the database.
- localhost
- localpost
- localcost
- none of these
Which command is used for cleaning up the environment?
- my.closed()
- is.end()
- con.quit()
- mycon.close()
Which function of connection is used to check whether connection to MySQL is successfully done or not?
import mysql.connector as mycon con = mycon.connect #ConnectionString if ...............: print("Connected!") else: print("Error! Not Connected")- con.connected()
- con.isconnected()
- con.is_connected()
- con.is_connect()