Albert Lukaszewski

  • DDaudalagidhat Zitat gemachtletztes Jahr
    The point of a cursor is to mark your place and to allow you to issue commands to the computer.
  • DDaudalagidhat Zitat gemachtletztes Jahr
    A cursor in MySQL for Python serves as a Python-based proxy for the cursor in a MySQL shell session, where MySQL would create the real cursor for us if we logged into a MySQL database.
  • DDaudalagidhat Zitat gemachtletztes Jahr
    By default, MySQL has autocommit switched on. Your database administrator will be able to confirm whether auto-commit is switched on. If it is not, you will need to commit any changes you have made.
  • DDaudalagidhat Zitat gemachtletztes Jahr
    (the \G is the same command as \g, but it tells MySQL to display the results vertically):
  • DDaudalagidhat Zitat gemachtletztes Jahr
    Where the semicolon is the statement delimiter in the MySQL shell, the backslash (\) is used to delimit lines within a statement.
  • DDaudalagidhat Zitat gemachtletztes Jahr
    The HAVING clause is used for aggregate functions. It can be used to replace WHERE, but to do so is generally viewed as poor coding because it violates the SQL standard.
  • DDaudalagidhat Zitat gemachtletztes Jahr
    The LIMIT clause is used to restrict the number of rows that are returned in the result set. It takes two positive integers as arguments. The first number indicates the point at which to start counting and counts from zero for that process. The second number indicates how many times to increment the first number by one in order to determine the desired limit.
  • DDaudalagidhat Zitat gemachtletztes Jahr
    If you are programming for a web application and your database and web server are located on a single machine, you need to conserve your server resources.
  • DDaudalagidhat Zitat gemachtletztes Jahr
    Therefore, you almost certainly want to use HAVING instead of LIMIT.
  • DDaudalagidhat Zitat gemachtletztes Jahr
    The execute() method, as the name implies, expects an argument of what is to be executed by Python. In other words, it takes the MySQL sentence or statement as its argument. Its basic syntax is as follows:
    results_variable = cursor_handle.execute('MySQL statement')
fb2epub
Ziehen Sie Ihre Dateien herüber (nicht mehr als fünf auf einmal)