Posts by Ulisses • 363 points
4 posts
-
18
votes0
answers488
viewsQ: Recursive call error in nested procedures
I have some procedures Mysql to do the following: The main code will always call the trial CALL sp_syncTabela. To sp_syncTabela will check if there is another specific process for the tableName…
-
1
votes1
answer1312
viewsA: Drop-down list with repeat criteria
Let’s change the source for its validation. In Plan2, in column C, you will include a "balance", which will make the difference between the maximum limit in column B and the counting of occurrences…
-
3
votes1
answer1041
viewsA: Split a string
In Excel, the arrays start at position 1. In the code snippet below, variable i starts with 0, and when evaluating splitinstrument(0) error occurs. tam = Len(instrument) - 1 For i = 0 To tam If…
-
4
votes1
answer4598
viewsQ: How to list a sample of all tables in a Mysql database?
I need to sample all tables in a Mysql database, for example through a SELECT * ... LIMIT 10. I already have the code that returns all tables of the current database: select table_name from…