About 2,300,000 results
Open links in new tab
  1. Syntax for input parameters in a MySQL query - Stack Overflow

    We recently switched a database from MSSQL to MySQL and the queries that use parameters don't work anymore. Here's an example of a query in MSSQL: SELECT * FROM users u WHERE …

  2. Pass parameters to MySQL script - Stack Overflow

    Dec 31, 2012 · I have a MySQL script file named query1.sql which contains: select * FROM $(tblName) LIMIT 10; I am in MySQL console, how do I pass the parameter to the script? This …

  3. Parameterized Query for MySQL with C# - Stack Overflow

    I don't think the MySql.Data classes support unnamed parameters. If you're keen to use them, you could access your MySql db via the Odbc drivers, they support this.

  4. mysql stored-procedure: out parameter - Stack Overflow

    I have a mysql stored procedure from this (google book), and one example is this: DELIMITER $$ DROP PROCEDURE IF EXISTS my_sqrt$$ CREATE PROCEDURE my_sqrt(input_number INT, OUT …

  5. python - MySQL parameterized queries - Stack Overflow

    It adds to the confusion that the modifiers used to bind parameters in a SQL statement varies between different DB API implementations and that the mysql client library uses printf style …

  6. C# with MySQL INSERT parameters - Stack Overflow

    Apr 23, 2013 · This is incompatible with MySQL user variables, so the provider now uses the '?' symbol to locate parameters in SQL. To support older code, you can set 'old syntax=yes' on …

  7. Can I create view with parameter in MySQL? - Stack Overflow

    I don't believe MySQL caches function results across queries. This technique works when creating a view within a stored procedure, when the created view is dependent on a varchar passed to …

  8. How to use SELECT parameters assignments in MySQL queries?

    Nov 13, 2018 · When converting MS SQL Server procedures to MySQL procedures, you better use local variables declared with DECLARE. The @var variables are user-defined variable and the …

  9. sql - How to declare a variable in MySQL? - Stack Overflow

    Aug 1, 2012 · How to declare a variable in mysql, so that my second query can use it? I would like to write something like: SET start = 1; SET finish = 10; SELECT * FROM places WHERE place …

  10. sql - Is it possible to have a default parameter for a mysql stored ...

    I have googled this and keep coming up with "No it is not possible" but these posts were dated 2005-2007 so I'm wondering if this has been changed. A code example: CREATE PROCEDURE …