├── .idea ├── .gitignore ├── inspectionProfiles │ └── profiles_settings.xml ├── modules.xml ├── mysqlcookbook.iml └── vcs.xml ├── LICENSE ├── README.md ├── cmdline.md └── recipes ├── admin ├── hitrate.rb └── hitrate.sql ├── api ├── .vscode │ └── launch.json ├── 01_connect │ ├── Connect.java │ ├── Connect2.java │ ├── Connect3.java │ ├── README.txt │ ├── connect.go │ ├── connect.php │ ├── connect.pl │ ├── connect.py │ ├── connect.rb │ ├── connect2.php │ ├── connect2.pl │ ├── connect2.py │ ├── connect2.rb │ ├── connect4.php │ ├── connect4.py │ ├── connect_socket.go │ ├── connect_tcpport.go │ ├── cursor.go │ ├── roar.php │ ├── select-no-database │ ├── select.go │ ├── select_profile.go │ ├── select_profile_all.go │ ├── select_profile_one.go │ ├── select_rows.go │ ├── update.go │ └── version.go ├── 02_errors │ ├── Error.java │ ├── err_disable.pl │ ├── error.php │ ├── error.py │ ├── error.rb │ ├── error1.pl │ ├── error2.pl │ ├── error3.pl │ ├── error4.pl │ ├── error5.pl │ ├── mysql_error.go │ └── tracing.pl ├── 03_library │ ├── Harness.java │ ├── README.txt │ ├── harness.go │ ├── harness.php │ ├── harness.pl │ ├── harness.py │ ├── harness.rb │ ├── harness2.php │ ├── harness2.pl │ ├── harness2.py │ └── harness2.rb ├── 04_stmt │ ├── Placeholder.java │ ├── Stmt.java │ ├── high_level.pl │ ├── high_level.rb │ ├── placeholder.go │ ├── placeholder.php │ ├── placeholder.pl │ ├── placeholder.py │ ├── placeholder.rb │ ├── placeholder_list.php │ ├── placeholder_list.pl │ ├── placeholder_list.py │ ├── placeholder_list.rb │ ├── quote.pl │ ├── quote_ident.php │ ├── quote_ident.rb │ ├── stmt.php │ ├── stmt.pl │ ├── stmt.py │ ├── stmt.rb │ └── transaction.go ├── 05_null_in_result │ ├── NullInResult.java │ ├── insert_special.go │ ├── null-in-result.go │ ├── null-in-result.php │ ├── null-in-result.pl │ ├── null-in-result.py │ ├── null-in-result.rb │ ├── null-test.php │ ├── select_null.go │ └── select_nullv2.go ├── 06_conn_params │ ├── Cmdline.java │ ├── Cookbook.properties │ ├── Notes │ ├── README.txt │ ├── ReadPropsFile.java │ ├── args.php │ ├── cb.cnf │ ├── cmd-options.pdf │ ├── cmdline.pl │ ├── cmdline.py │ ├── cmdline.rb │ ├── mycnf.go │ ├── option_file.pl │ ├── option_file.rb │ ├── read_mysql_option_file.php │ ├── test_java.sh │ ├── test_perl.sh │ ├── test_python.sh │ └── test_ruby.sh └── README.txt ├── collections ├── blogs.json └── limbs.json ├── cookbook.sql ├── datasets ├── Names_2010Census-license ├── Names_2010Census.csv ├── diagnosis-license ├── diagnosis.csv ├── top-350-male-and-female-names-since-1848-2019-02-26-license └── top-350-male-and-female-names-since-1848-2019-02-26.csv ├── dates ├── Leap.java ├── age.sql ├── date.sql ├── date_calc.sql ├── date_cmp.sql ├── date_rewrite.sql ├── dayofweek.sql ├── dtdiff.sql ├── int_print.py ├── int_print.rb ├── interval.sql ├── leap-native.php ├── leap.go ├── leap.php ├── leap.pl ├── leap.py ├── leap.rb ├── leap.sql ├── now_default.sql ├── paydays.pl ├── paydays.sql ├── time_cmp.sql ├── timestamp.sql ├── today.sql ├── tsdemo.sql └── within_week.sql ├── dups ├── delete_dups.pl ├── dup_count.php ├── dup_count.pl ├── dup_count.py ├── dup_info.sql └── person_index.sql ├── events ├── expire_general_log.sql ├── expire_perl_session.sql ├── expire_rows.sql ├── expire_ruby_session.sql └── mark_log.sql ├── joins ├── add_cities_cols.sql ├── artist.sql ├── detail_count.sql ├── distinct_col.pl ├── distinct_col.rb ├── distinct_col.sql ├── driver_summary.sql ├── fill_find_holes.sql ├── make_date_list.pl ├── make_date_list.sql ├── most_paintings.sql ├── multi-db-join.sql ├── sales_subq_delete.sql └── self.sql ├── lib ├── Cookbook.java ├── Cookbook.php ├── Cookbook.pm ├── Cookbook.properties ├── Cookbook.rb ├── Cookbook_Session.php ├── Cookbook_Utils.php ├── Cookbook_Utils.pm ├── Cookbook_Utils.rb ├── Cookbook_Webutils.php ├── Cookbook_Webutils.pm ├── Cookbook_Webutils.rb ├── EnumOrSetInfo.java ├── README.txt ├── cookbook.py ├── cookbook_utils.py ├── cookbook_webutils.py └── go.mod ├── metadata ├── APIMeta.java ├── AffectedRows.java ├── DBMeta.java ├── DisplayResultSet.java ├── DisplayResultSet2.java ├── EscapeColumnName.java ├── GetDatabaseNames.java ├── GetEnumOrSetInfo.java ├── GetRSMeta.java ├── GetTableNames.java ├── ServerMeta.java ├── affected_rows.php ├── affected_rows.pl ├── affected_rows.py ├── affected_rows.rb ├── database_exists.pl ├── database_exists.rb ├── escape_column_name.sh ├── get_column_info.php ├── get_column_info.pl ├── get_column_info.py ├── get_column_info.rb ├── get_column_names.php ├── get_column_names.pl ├── get_column_names.py ├── get_column_names.rb ├── get_connection_meta.pl ├── get_connection_meta.py ├── get_connection_meta.rb ├── get_database_names.pl ├── get_database_names.rb ├── get_enumorset_info.php ├── get_enumorset_info.pl ├── get_enumorset_info.py ├── get_enumorset_info.rb ├── get_rs_meta.go ├── get_rs_meta.php ├── get_rs_meta.pl ├── get_rs_meta.py ├── get_rs_meta.rb ├── get_server_meta.pl ├── get_server_version.pl ├── get_server_version.py ├── get_server_version.rb ├── get_table_names.pl ├── ins_app_log_tbl.sql ├── table_exists.pl ├── table_exists.rb └── table_list.pl ├── misc ├── buddy_like_foods.sql ├── buddy_pairs.sql ├── envshow.py ├── query_len.pl └── serial.sql ├── mysql_shell ├── CookbookCollection.js ├── CookbookCollectionModule.js ├── cookbook.py └── generate_patients_data.py ├── progdemo ├── JavaDemo.java ├── README.txt ├── godemo.go ├── perldemo.pl ├── perldemo2.pl ├── phpdemo.php ├── pythondemo.py ├── pythondemo2.py ├── rubydemo.rb └── rubydemo2.rb ├── routines ├── avg_legs.sql ├── avg_mail_size.sql ├── create_user.sql ├── divide.sql ├── drop_user.sql ├── dynamic-sql.sql ├── enable_failed_login_attempts.sql ├── exec_stmt.sql ├── expire_all_passwords.sql ├── fix-insecure-accounts.sql ├── is_leap_year.sql ├── mail_sender_stats.sql ├── quote_identifier.sql ├── sales_tax_rate.sql ├── server_version.sql ├── show_part_of_day.sql ├── show_version.sql ├── time_ampm.sql └── us_population.sql ├── select ├── DateSent.java ├── date_sent.php ├── date_sent.pl ├── date_sent.rb ├── limit.php ├── maxmin.sql └── nulltest.pl ├── sequences ├── AddInsect.java ├── BookSales.java ├── README.txt ├── SeqDemo.java ├── add_insect.php ├── add_insect.pl ├── add_insect.py ├── add_insect.rb ├── booksales.php ├── booksales.pl ├── booksales.py ├── booksales.rb ├── booksales.sql ├── caseboxunit.pl ├── caseboxunit.py ├── caseboxunit.rb ├── custom_sequences.sql ├── disp_origin.py ├── hashtest.pl ├── invoice.pl ├── invoice.rb ├── multicolseq.sql ├── resequence.sql ├── reuse-test.sql ├── seq_generator.sql ├── seqdemo.pl ├── seqdemo.py ├── seqdemo.rb └── seqdiag.pl ├── sorting ├── color_sort.sql ├── domain_sort.sql ├── housewares_sort.sql ├── ip_sort.sql ├── mailday.sql ├── mailsort.sql ├── name_sort.sql ├── occasion_sort.sql └── weekday_sort.sql ├── stats ├── CalcStandings.java ├── RandTest.java ├── calc_standings.php ├── calc_standings.pl ├── calc_standings1.sql ├── calc_standings2.sql ├── correlation.pl ├── correlation.sql ├── cr_die_tbl.sql ├── cr_marble_tbl.sql ├── cr_player_tbl.sql ├── create_deck.php ├── deck.sql ├── die_toss.sql ├── median.pl ├── rand_test.php ├── rand_test.pl ├── rand_test.py ├── rand_test.rb ├── rand_test2.php ├── rand_test2.pl ├── rand_test2.py ├── rank.php ├── rank.pl ├── rank.rb ├── regression.pl ├── regression.sql └── shuffle_deck.php ├── strings ├── amazon.sql ├── binary-case-convert.sql ├── boolmode.sql └── case_alter.sql ├── summary ├── amazon_reviews.sql ├── driver_trips.py └── sum_expt.sql ├── tables ├── adcount.sql ├── al_winner-2001.txt ├── al_winner.sql ├── app_log.sql ├── artist.sql ├── book_authors.sql ├── book_vendor.sql ├── booksales.sql ├── catalog_list.sql ├── cd.sql ├── city.sql ├── city.txt ├── color.sql ├── cow.sql ├── date_val.sql ├── datetbl.sql ├── datetime_val.sql ├── die.sql ├── doremi.sql ├── drawing.sql ├── driver_log.sql ├── expt.sql ├── formula1.sql ├── goods_characteristics.sql ├── goods_shops.sql ├── groceries.sql ├── groceries_order_items.sql ├── hits.sql ├── hostip.sql ├── hostname.sql ├── housewares.sql ├── httpdlog.sql ├── httpdlog2.sql ├── image.sql ├── ingredient.sql ├── insect.sql ├── invoice.sql ├── item.sql ├── limbs.sql ├── mail.sql ├── marathon.sql ├── mark_log.sql ├── metal.sql ├── money.sql ├── movies-actors.sql ├── name.sql ├── news.sql ├── newsstaff.sql ├── numbers.sql ├── obs.sql ├── occasion.sql ├── passtbl.sql ├── passwd.sql ├── patients.sql ├── perl_session.sql ├── person.sql ├── php_session.sql ├── phrase.sql ├── player_stats.sql ├── poi.sql ├── poll_vote.sql ├── profile.sql ├── profile2.sql ├── profile_contact.sql ├── proto.sql ├── rainfall.sql ├── rainfall2.sql ├── rand_names.sql ├── ranks.sql ├── reviews.sql ├── roster.sql ├── ruby_session.sql ├── sales.sql ├── sales_tax_rate.sql ├── sales_tax_rate.txt ├── sibling.sql ├── standings1.sql ├── standings2.sql ├── states.sql ├── states.txt ├── str_val.sql ├── sundays.sql ├── testscore.sql ├── testscore_withmisses.sql ├── testscore_withmisses2.sql ├── time_val.sql ├── tomcat_realm.sql ├── tomcat_session.sql ├── top_names.sql ├── trip.sql ├── tsdemo.sql ├── weather.sql └── weekday.sql ├── tblmgmt ├── drop-create-table.sql ├── uniq_name.php ├── uniq_name.pl ├── uniq_name.py └── uniq_name.rb ├── transactions ├── README.txt ├── Transaction.java ├── transaction.go ├── transaction.php ├── transaction.pl ├── transaction.py ├── transaction.rb └── transaction_context.go ├── transfer ├── LookupTest.java ├── README.txt ├── TODO ├── check_enum_value.php ├── check_enum_value.pl ├── check_enum_value.py ├── check_enum_value.rb ├── check_set_value.pl ├── check_set_value.py ├── commodities.csv ├── cvt_date.pl ├── cvt_date.py ├── cvt_file.pl ├── dates-brit.txt ├── dates-iso.txt ├── dates-us.txt ├── dates2.txt ├── from_excel.pl ├── guess_table.pl ├── has_nulls.txt ├── hexdump.pl ├── hexdump.py ├── hexdump.rb ├── isoize_data.txt ├── isoize_date.pl ├── isoize_date.py ├── load-examples │ ├── data-colon-cr.txt │ ├── data-colon.txt │ ├── data-csv-cr.txt │ ├── data-csv-crlf.txt │ ├── data-csv.txt │ ├── data-merge-cr.txt │ ├── data-merge.txt │ ├── data-tab-crlf.txt │ ├── data-tab.txt │ ├── import-passwd.sh │ ├── import-test.sh │ ├── ld-csv.sql │ ├── ld-tab.sql │ ├── load-passwd.sql │ ├── load-test.sh │ ├── mysql_export.sh │ ├── mytbl.sql │ ├── mytbl.txt │ ├── passwd.txt │ ├── select-passwd1.sql │ └── select-passwd2.sql ├── load_amazon_reviews.py ├── load_diag.pl ├── lookup_test.php ├── lookup_test.pl ├── lookup_test.py ├── lookup_test.rb ├── lookup_time.pl ├── lookup_time.py ├── loop.pl ├── loop.py ├── missing_day_to_iso.pl ├── mmddyyyy_to_iso.sql ├── mmddyyyy_to_iso.txt ├── monddyyyy_to_iso.pl ├── monddyyyy_to_iso.py ├── monddyyyy_to_iso2.pl ├── mysql_to_excel.pl ├── mysql_to_text.pl ├── mysql_to_xml.pl ├── newdata.txt ├── parse_date.pl ├── pat_test.dat ├── patterns ├── see.pl ├── see.py ├── see.rb ├── somedata.csv ├── somedata.txt ├── statehood.txt ├── test_csv.pl ├── test_date.php ├── test_date_pat.pl ├── test_integer.pl ├── test_integer.py ├── test_pat.pl ├── test_pat.py ├── test_time_pat.pl ├── test_web_pat.pl ├── testdat-colon.tab ├── testdat.csv ├── testdat.tab ├── to_excel.pl ├── validate_htwt.pl ├── validate_htwt.py ├── validate_misc.pl ├── validate_misc.py ├── xml_to_mysql.pl ├── yank_col.pl └── yy_to_yyyy.py └── triggers ├── contact_trigger.sql ├── cust_invoice.sql ├── functional-index.sql ├── logging_trigger.sql └── ts_emulate.sql /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /workspace.xml 3 | -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/mysqlcookbook.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/.idea/mysqlcookbook.iml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/README.md -------------------------------------------------------------------------------- /cmdline.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/cmdline.md -------------------------------------------------------------------------------- /recipes/admin/hitrate.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/admin/hitrate.rb -------------------------------------------------------------------------------- /recipes/admin/hitrate.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/admin/hitrate.sql -------------------------------------------------------------------------------- /recipes/api/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/api/.vscode/launch.json -------------------------------------------------------------------------------- /recipes/api/01_connect/Connect.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/api/01_connect/Connect.java -------------------------------------------------------------------------------- /recipes/api/01_connect/Connect2.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/api/01_connect/Connect2.java -------------------------------------------------------------------------------- /recipes/api/01_connect/Connect3.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/api/01_connect/Connect3.java -------------------------------------------------------------------------------- /recipes/api/01_connect/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/api/01_connect/README.txt -------------------------------------------------------------------------------- /recipes/api/01_connect/connect.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/api/01_connect/connect.go -------------------------------------------------------------------------------- /recipes/api/01_connect/connect.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/api/01_connect/connect.php -------------------------------------------------------------------------------- /recipes/api/01_connect/connect.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/api/01_connect/connect.pl -------------------------------------------------------------------------------- /recipes/api/01_connect/connect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/api/01_connect/connect.py -------------------------------------------------------------------------------- /recipes/api/01_connect/connect.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/api/01_connect/connect.rb -------------------------------------------------------------------------------- /recipes/api/01_connect/connect2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/api/01_connect/connect2.php -------------------------------------------------------------------------------- /recipes/api/01_connect/connect2.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/api/01_connect/connect2.pl -------------------------------------------------------------------------------- /recipes/api/01_connect/connect2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/api/01_connect/connect2.py -------------------------------------------------------------------------------- /recipes/api/01_connect/connect2.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/api/01_connect/connect2.rb -------------------------------------------------------------------------------- /recipes/api/01_connect/connect4.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/api/01_connect/connect4.php -------------------------------------------------------------------------------- /recipes/api/01_connect/connect4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/api/01_connect/connect4.py -------------------------------------------------------------------------------- /recipes/api/01_connect/connect_socket.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/api/01_connect/connect_socket.go -------------------------------------------------------------------------------- /recipes/api/01_connect/connect_tcpport.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/api/01_connect/connect_tcpport.go -------------------------------------------------------------------------------- /recipes/api/01_connect/cursor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/api/01_connect/cursor.go -------------------------------------------------------------------------------- /recipes/api/01_connect/roar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/api/01_connect/roar.php -------------------------------------------------------------------------------- /recipes/api/01_connect/select-no-database: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/api/01_connect/select-no-database -------------------------------------------------------------------------------- /recipes/api/01_connect/select.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/api/01_connect/select.go -------------------------------------------------------------------------------- /recipes/api/01_connect/select_profile.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/api/01_connect/select_profile.go -------------------------------------------------------------------------------- /recipes/api/01_connect/select_profile_all.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/api/01_connect/select_profile_all.go -------------------------------------------------------------------------------- /recipes/api/01_connect/select_profile_one.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/api/01_connect/select_profile_one.go -------------------------------------------------------------------------------- /recipes/api/01_connect/select_rows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/api/01_connect/select_rows.go -------------------------------------------------------------------------------- /recipes/api/01_connect/update.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/api/01_connect/update.go -------------------------------------------------------------------------------- /recipes/api/01_connect/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/api/01_connect/version.go -------------------------------------------------------------------------------- /recipes/api/02_errors/Error.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/api/02_errors/Error.java -------------------------------------------------------------------------------- /recipes/api/02_errors/err_disable.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/api/02_errors/err_disable.pl -------------------------------------------------------------------------------- /recipes/api/02_errors/error.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/api/02_errors/error.php -------------------------------------------------------------------------------- /recipes/api/02_errors/error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/api/02_errors/error.py -------------------------------------------------------------------------------- /recipes/api/02_errors/error.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/api/02_errors/error.rb -------------------------------------------------------------------------------- /recipes/api/02_errors/error1.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/api/02_errors/error1.pl -------------------------------------------------------------------------------- /recipes/api/02_errors/error2.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/api/02_errors/error2.pl -------------------------------------------------------------------------------- /recipes/api/02_errors/error3.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/api/02_errors/error3.pl -------------------------------------------------------------------------------- /recipes/api/02_errors/error4.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/api/02_errors/error4.pl -------------------------------------------------------------------------------- /recipes/api/02_errors/error5.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/api/02_errors/error5.pl -------------------------------------------------------------------------------- /recipes/api/02_errors/mysql_error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/api/02_errors/mysql_error.go -------------------------------------------------------------------------------- /recipes/api/02_errors/tracing.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/api/02_errors/tracing.pl -------------------------------------------------------------------------------- /recipes/api/03_library/Harness.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/api/03_library/Harness.java -------------------------------------------------------------------------------- /recipes/api/03_library/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/api/03_library/README.txt -------------------------------------------------------------------------------- /recipes/api/03_library/harness.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/api/03_library/harness.go -------------------------------------------------------------------------------- /recipes/api/03_library/harness.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/api/03_library/harness.php -------------------------------------------------------------------------------- /recipes/api/03_library/harness.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/api/03_library/harness.pl -------------------------------------------------------------------------------- /recipes/api/03_library/harness.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/api/03_library/harness.py -------------------------------------------------------------------------------- /recipes/api/03_library/harness.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/api/03_library/harness.rb -------------------------------------------------------------------------------- /recipes/api/03_library/harness2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/api/03_library/harness2.php -------------------------------------------------------------------------------- /recipes/api/03_library/harness2.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/api/03_library/harness2.pl -------------------------------------------------------------------------------- /recipes/api/03_library/harness2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/api/03_library/harness2.py -------------------------------------------------------------------------------- /recipes/api/03_library/harness2.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/api/03_library/harness2.rb -------------------------------------------------------------------------------- /recipes/api/04_stmt/Placeholder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/api/04_stmt/Placeholder.java -------------------------------------------------------------------------------- /recipes/api/04_stmt/Stmt.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/api/04_stmt/Stmt.java -------------------------------------------------------------------------------- /recipes/api/04_stmt/high_level.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/api/04_stmt/high_level.pl -------------------------------------------------------------------------------- /recipes/api/04_stmt/high_level.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/api/04_stmt/high_level.rb -------------------------------------------------------------------------------- /recipes/api/04_stmt/placeholder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/api/04_stmt/placeholder.go -------------------------------------------------------------------------------- /recipes/api/04_stmt/placeholder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/api/04_stmt/placeholder.php -------------------------------------------------------------------------------- /recipes/api/04_stmt/placeholder.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/api/04_stmt/placeholder.pl -------------------------------------------------------------------------------- /recipes/api/04_stmt/placeholder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/api/04_stmt/placeholder.py -------------------------------------------------------------------------------- /recipes/api/04_stmt/placeholder.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/api/04_stmt/placeholder.rb -------------------------------------------------------------------------------- /recipes/api/04_stmt/placeholder_list.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/api/04_stmt/placeholder_list.php -------------------------------------------------------------------------------- /recipes/api/04_stmt/placeholder_list.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/api/04_stmt/placeholder_list.pl -------------------------------------------------------------------------------- /recipes/api/04_stmt/placeholder_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/api/04_stmt/placeholder_list.py -------------------------------------------------------------------------------- /recipes/api/04_stmt/placeholder_list.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/api/04_stmt/placeholder_list.rb -------------------------------------------------------------------------------- /recipes/api/04_stmt/quote.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/api/04_stmt/quote.pl -------------------------------------------------------------------------------- /recipes/api/04_stmt/quote_ident.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/api/04_stmt/quote_ident.php -------------------------------------------------------------------------------- /recipes/api/04_stmt/quote_ident.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/api/04_stmt/quote_ident.rb -------------------------------------------------------------------------------- /recipes/api/04_stmt/stmt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/api/04_stmt/stmt.php -------------------------------------------------------------------------------- /recipes/api/04_stmt/stmt.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/api/04_stmt/stmt.pl -------------------------------------------------------------------------------- /recipes/api/04_stmt/stmt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/api/04_stmt/stmt.py -------------------------------------------------------------------------------- /recipes/api/04_stmt/stmt.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/api/04_stmt/stmt.rb -------------------------------------------------------------------------------- /recipes/api/04_stmt/transaction.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/api/04_stmt/transaction.go -------------------------------------------------------------------------------- /recipes/api/05_null_in_result/NullInResult.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/api/05_null_in_result/NullInResult.java -------------------------------------------------------------------------------- /recipes/api/05_null_in_result/insert_special.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/api/05_null_in_result/insert_special.go -------------------------------------------------------------------------------- /recipes/api/05_null_in_result/null-in-result.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/api/05_null_in_result/null-in-result.go -------------------------------------------------------------------------------- /recipes/api/05_null_in_result/null-in-result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/api/05_null_in_result/null-in-result.php -------------------------------------------------------------------------------- /recipes/api/05_null_in_result/null-in-result.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/api/05_null_in_result/null-in-result.pl -------------------------------------------------------------------------------- /recipes/api/05_null_in_result/null-in-result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/api/05_null_in_result/null-in-result.py -------------------------------------------------------------------------------- /recipes/api/05_null_in_result/null-in-result.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/api/05_null_in_result/null-in-result.rb -------------------------------------------------------------------------------- /recipes/api/05_null_in_result/null-test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/api/05_null_in_result/null-test.php -------------------------------------------------------------------------------- /recipes/api/05_null_in_result/select_null.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/api/05_null_in_result/select_null.go -------------------------------------------------------------------------------- /recipes/api/05_null_in_result/select_nullv2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/api/05_null_in_result/select_nullv2.go -------------------------------------------------------------------------------- /recipes/api/06_conn_params/Cmdline.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/api/06_conn_params/Cmdline.java -------------------------------------------------------------------------------- /recipes/api/06_conn_params/Cookbook.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/api/06_conn_params/Cookbook.properties -------------------------------------------------------------------------------- /recipes/api/06_conn_params/Notes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/api/06_conn_params/Notes -------------------------------------------------------------------------------- /recipes/api/06_conn_params/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/api/06_conn_params/README.txt -------------------------------------------------------------------------------- /recipes/api/06_conn_params/ReadPropsFile.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/api/06_conn_params/ReadPropsFile.java -------------------------------------------------------------------------------- /recipes/api/06_conn_params/args.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/api/06_conn_params/args.php -------------------------------------------------------------------------------- /recipes/api/06_conn_params/cb.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/api/06_conn_params/cb.cnf -------------------------------------------------------------------------------- /recipes/api/06_conn_params/cmd-options.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/api/06_conn_params/cmd-options.pdf -------------------------------------------------------------------------------- /recipes/api/06_conn_params/cmdline.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/api/06_conn_params/cmdline.pl -------------------------------------------------------------------------------- /recipes/api/06_conn_params/cmdline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/api/06_conn_params/cmdline.py -------------------------------------------------------------------------------- /recipes/api/06_conn_params/cmdline.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/api/06_conn_params/cmdline.rb -------------------------------------------------------------------------------- /recipes/api/06_conn_params/mycnf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/api/06_conn_params/mycnf.go -------------------------------------------------------------------------------- /recipes/api/06_conn_params/option_file.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/api/06_conn_params/option_file.pl -------------------------------------------------------------------------------- /recipes/api/06_conn_params/option_file.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/api/06_conn_params/option_file.rb -------------------------------------------------------------------------------- /recipes/api/06_conn_params/read_mysql_option_file.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/api/06_conn_params/read_mysql_option_file.php -------------------------------------------------------------------------------- /recipes/api/06_conn_params/test_java.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/api/06_conn_params/test_java.sh -------------------------------------------------------------------------------- /recipes/api/06_conn_params/test_perl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/api/06_conn_params/test_perl.sh -------------------------------------------------------------------------------- /recipes/api/06_conn_params/test_python.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/api/06_conn_params/test_python.sh -------------------------------------------------------------------------------- /recipes/api/06_conn_params/test_ruby.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/api/06_conn_params/test_ruby.sh -------------------------------------------------------------------------------- /recipes/api/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/api/README.txt -------------------------------------------------------------------------------- /recipes/collections/blogs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/collections/blogs.json -------------------------------------------------------------------------------- /recipes/collections/limbs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/collections/limbs.json -------------------------------------------------------------------------------- /recipes/cookbook.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/cookbook.sql -------------------------------------------------------------------------------- /recipes/datasets/Names_2010Census-license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/datasets/Names_2010Census-license -------------------------------------------------------------------------------- /recipes/datasets/Names_2010Census.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/datasets/Names_2010Census.csv -------------------------------------------------------------------------------- /recipes/datasets/diagnosis-license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/datasets/diagnosis-license -------------------------------------------------------------------------------- /recipes/datasets/diagnosis.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/datasets/diagnosis.csv -------------------------------------------------------------------------------- /recipes/datasets/top-350-male-and-female-names-since-1848-2019-02-26-license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/datasets/top-350-male-and-female-names-since-1848-2019-02-26-license -------------------------------------------------------------------------------- /recipes/datasets/top-350-male-and-female-names-since-1848-2019-02-26.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/datasets/top-350-male-and-female-names-since-1848-2019-02-26.csv -------------------------------------------------------------------------------- /recipes/dates/Leap.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/dates/Leap.java -------------------------------------------------------------------------------- /recipes/dates/age.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/dates/age.sql -------------------------------------------------------------------------------- /recipes/dates/date.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/dates/date.sql -------------------------------------------------------------------------------- /recipes/dates/date_calc.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/dates/date_calc.sql -------------------------------------------------------------------------------- /recipes/dates/date_cmp.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/dates/date_cmp.sql -------------------------------------------------------------------------------- /recipes/dates/date_rewrite.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/dates/date_rewrite.sql -------------------------------------------------------------------------------- /recipes/dates/dayofweek.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/dates/dayofweek.sql -------------------------------------------------------------------------------- /recipes/dates/dtdiff.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/dates/dtdiff.sql -------------------------------------------------------------------------------- /recipes/dates/int_print.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/dates/int_print.py -------------------------------------------------------------------------------- /recipes/dates/int_print.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/dates/int_print.rb -------------------------------------------------------------------------------- /recipes/dates/interval.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/dates/interval.sql -------------------------------------------------------------------------------- /recipes/dates/leap-native.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/dates/leap-native.php -------------------------------------------------------------------------------- /recipes/dates/leap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/dates/leap.go -------------------------------------------------------------------------------- /recipes/dates/leap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/dates/leap.php -------------------------------------------------------------------------------- /recipes/dates/leap.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/dates/leap.pl -------------------------------------------------------------------------------- /recipes/dates/leap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/dates/leap.py -------------------------------------------------------------------------------- /recipes/dates/leap.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/dates/leap.rb -------------------------------------------------------------------------------- /recipes/dates/leap.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/dates/leap.sql -------------------------------------------------------------------------------- /recipes/dates/now_default.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/dates/now_default.sql -------------------------------------------------------------------------------- /recipes/dates/paydays.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/dates/paydays.pl -------------------------------------------------------------------------------- /recipes/dates/paydays.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/dates/paydays.sql -------------------------------------------------------------------------------- /recipes/dates/time_cmp.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/dates/time_cmp.sql -------------------------------------------------------------------------------- /recipes/dates/timestamp.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/dates/timestamp.sql -------------------------------------------------------------------------------- /recipes/dates/today.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/dates/today.sql -------------------------------------------------------------------------------- /recipes/dates/tsdemo.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/dates/tsdemo.sql -------------------------------------------------------------------------------- /recipes/dates/within_week.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/dates/within_week.sql -------------------------------------------------------------------------------- /recipes/dups/delete_dups.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/dups/delete_dups.pl -------------------------------------------------------------------------------- /recipes/dups/dup_count.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/dups/dup_count.php -------------------------------------------------------------------------------- /recipes/dups/dup_count.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/dups/dup_count.pl -------------------------------------------------------------------------------- /recipes/dups/dup_count.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/dups/dup_count.py -------------------------------------------------------------------------------- /recipes/dups/dup_info.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/dups/dup_info.sql -------------------------------------------------------------------------------- /recipes/dups/person_index.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/dups/person_index.sql -------------------------------------------------------------------------------- /recipes/events/expire_general_log.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/events/expire_general_log.sql -------------------------------------------------------------------------------- /recipes/events/expire_perl_session.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/events/expire_perl_session.sql -------------------------------------------------------------------------------- /recipes/events/expire_rows.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/events/expire_rows.sql -------------------------------------------------------------------------------- /recipes/events/expire_ruby_session.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/events/expire_ruby_session.sql -------------------------------------------------------------------------------- /recipes/events/mark_log.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/events/mark_log.sql -------------------------------------------------------------------------------- /recipes/joins/add_cities_cols.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/joins/add_cities_cols.sql -------------------------------------------------------------------------------- /recipes/joins/artist.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/joins/artist.sql -------------------------------------------------------------------------------- /recipes/joins/detail_count.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/joins/detail_count.sql -------------------------------------------------------------------------------- /recipes/joins/distinct_col.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/joins/distinct_col.pl -------------------------------------------------------------------------------- /recipes/joins/distinct_col.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/joins/distinct_col.rb -------------------------------------------------------------------------------- /recipes/joins/distinct_col.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/joins/distinct_col.sql -------------------------------------------------------------------------------- /recipes/joins/driver_summary.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/joins/driver_summary.sql -------------------------------------------------------------------------------- /recipes/joins/fill_find_holes.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/joins/fill_find_holes.sql -------------------------------------------------------------------------------- /recipes/joins/make_date_list.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/joins/make_date_list.pl -------------------------------------------------------------------------------- /recipes/joins/make_date_list.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/joins/make_date_list.sql -------------------------------------------------------------------------------- /recipes/joins/most_paintings.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/joins/most_paintings.sql -------------------------------------------------------------------------------- /recipes/joins/multi-db-join.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/joins/multi-db-join.sql -------------------------------------------------------------------------------- /recipes/joins/sales_subq_delete.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/joins/sales_subq_delete.sql -------------------------------------------------------------------------------- /recipes/joins/self.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/joins/self.sql -------------------------------------------------------------------------------- /recipes/lib/Cookbook.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/lib/Cookbook.java -------------------------------------------------------------------------------- /recipes/lib/Cookbook.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/lib/Cookbook.php -------------------------------------------------------------------------------- /recipes/lib/Cookbook.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/lib/Cookbook.pm -------------------------------------------------------------------------------- /recipes/lib/Cookbook.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/lib/Cookbook.properties -------------------------------------------------------------------------------- /recipes/lib/Cookbook.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/lib/Cookbook.rb -------------------------------------------------------------------------------- /recipes/lib/Cookbook_Session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/lib/Cookbook_Session.php -------------------------------------------------------------------------------- /recipes/lib/Cookbook_Utils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/lib/Cookbook_Utils.php -------------------------------------------------------------------------------- /recipes/lib/Cookbook_Utils.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/lib/Cookbook_Utils.pm -------------------------------------------------------------------------------- /recipes/lib/Cookbook_Utils.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/lib/Cookbook_Utils.rb -------------------------------------------------------------------------------- /recipes/lib/Cookbook_Webutils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/lib/Cookbook_Webutils.php -------------------------------------------------------------------------------- /recipes/lib/Cookbook_Webutils.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/lib/Cookbook_Webutils.pm -------------------------------------------------------------------------------- /recipes/lib/Cookbook_Webutils.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/lib/Cookbook_Webutils.rb -------------------------------------------------------------------------------- /recipes/lib/EnumOrSetInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/lib/EnumOrSetInfo.java -------------------------------------------------------------------------------- /recipes/lib/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/lib/README.txt -------------------------------------------------------------------------------- /recipes/lib/cookbook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/lib/cookbook.py -------------------------------------------------------------------------------- /recipes/lib/cookbook_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/lib/cookbook_utils.py -------------------------------------------------------------------------------- /recipes/lib/cookbook_webutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/lib/cookbook_webutils.py -------------------------------------------------------------------------------- /recipes/lib/go.mod: -------------------------------------------------------------------------------- 1 | module cookbook 2 | 3 | go 1.13 4 | -------------------------------------------------------------------------------- /recipes/metadata/APIMeta.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/metadata/APIMeta.java -------------------------------------------------------------------------------- /recipes/metadata/AffectedRows.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/metadata/AffectedRows.java -------------------------------------------------------------------------------- /recipes/metadata/DBMeta.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/metadata/DBMeta.java -------------------------------------------------------------------------------- /recipes/metadata/DisplayResultSet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/metadata/DisplayResultSet.java -------------------------------------------------------------------------------- /recipes/metadata/DisplayResultSet2.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/metadata/DisplayResultSet2.java -------------------------------------------------------------------------------- /recipes/metadata/EscapeColumnName.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/metadata/EscapeColumnName.java -------------------------------------------------------------------------------- /recipes/metadata/GetDatabaseNames.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/metadata/GetDatabaseNames.java -------------------------------------------------------------------------------- /recipes/metadata/GetEnumOrSetInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/metadata/GetEnumOrSetInfo.java -------------------------------------------------------------------------------- /recipes/metadata/GetRSMeta.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/metadata/GetRSMeta.java -------------------------------------------------------------------------------- /recipes/metadata/GetTableNames.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/metadata/GetTableNames.java -------------------------------------------------------------------------------- /recipes/metadata/ServerMeta.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/metadata/ServerMeta.java -------------------------------------------------------------------------------- /recipes/metadata/affected_rows.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/metadata/affected_rows.php -------------------------------------------------------------------------------- /recipes/metadata/affected_rows.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/metadata/affected_rows.pl -------------------------------------------------------------------------------- /recipes/metadata/affected_rows.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/metadata/affected_rows.py -------------------------------------------------------------------------------- /recipes/metadata/affected_rows.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/metadata/affected_rows.rb -------------------------------------------------------------------------------- /recipes/metadata/database_exists.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/metadata/database_exists.pl -------------------------------------------------------------------------------- /recipes/metadata/database_exists.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/metadata/database_exists.rb -------------------------------------------------------------------------------- /recipes/metadata/escape_column_name.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/metadata/escape_column_name.sh -------------------------------------------------------------------------------- /recipes/metadata/get_column_info.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/metadata/get_column_info.php -------------------------------------------------------------------------------- /recipes/metadata/get_column_info.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/metadata/get_column_info.pl -------------------------------------------------------------------------------- /recipes/metadata/get_column_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/metadata/get_column_info.py -------------------------------------------------------------------------------- /recipes/metadata/get_column_info.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/metadata/get_column_info.rb -------------------------------------------------------------------------------- /recipes/metadata/get_column_names.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/metadata/get_column_names.php -------------------------------------------------------------------------------- /recipes/metadata/get_column_names.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/metadata/get_column_names.pl -------------------------------------------------------------------------------- /recipes/metadata/get_column_names.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/metadata/get_column_names.py -------------------------------------------------------------------------------- /recipes/metadata/get_column_names.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/metadata/get_column_names.rb -------------------------------------------------------------------------------- /recipes/metadata/get_connection_meta.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/metadata/get_connection_meta.pl -------------------------------------------------------------------------------- /recipes/metadata/get_connection_meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/metadata/get_connection_meta.py -------------------------------------------------------------------------------- /recipes/metadata/get_connection_meta.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/metadata/get_connection_meta.rb -------------------------------------------------------------------------------- /recipes/metadata/get_database_names.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/metadata/get_database_names.pl -------------------------------------------------------------------------------- /recipes/metadata/get_database_names.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/metadata/get_database_names.rb -------------------------------------------------------------------------------- /recipes/metadata/get_enumorset_info.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/metadata/get_enumorset_info.php -------------------------------------------------------------------------------- /recipes/metadata/get_enumorset_info.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/metadata/get_enumorset_info.pl -------------------------------------------------------------------------------- /recipes/metadata/get_enumorset_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/metadata/get_enumorset_info.py -------------------------------------------------------------------------------- /recipes/metadata/get_enumorset_info.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/metadata/get_enumorset_info.rb -------------------------------------------------------------------------------- /recipes/metadata/get_rs_meta.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/metadata/get_rs_meta.go -------------------------------------------------------------------------------- /recipes/metadata/get_rs_meta.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/metadata/get_rs_meta.php -------------------------------------------------------------------------------- /recipes/metadata/get_rs_meta.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/metadata/get_rs_meta.pl -------------------------------------------------------------------------------- /recipes/metadata/get_rs_meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/metadata/get_rs_meta.py -------------------------------------------------------------------------------- /recipes/metadata/get_rs_meta.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/metadata/get_rs_meta.rb -------------------------------------------------------------------------------- /recipes/metadata/get_server_meta.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/metadata/get_server_meta.pl -------------------------------------------------------------------------------- /recipes/metadata/get_server_version.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/metadata/get_server_version.pl -------------------------------------------------------------------------------- /recipes/metadata/get_server_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/metadata/get_server_version.py -------------------------------------------------------------------------------- /recipes/metadata/get_server_version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/metadata/get_server_version.rb -------------------------------------------------------------------------------- /recipes/metadata/get_table_names.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/metadata/get_table_names.pl -------------------------------------------------------------------------------- /recipes/metadata/ins_app_log_tbl.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/metadata/ins_app_log_tbl.sql -------------------------------------------------------------------------------- /recipes/metadata/table_exists.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/metadata/table_exists.pl -------------------------------------------------------------------------------- /recipes/metadata/table_exists.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/metadata/table_exists.rb -------------------------------------------------------------------------------- /recipes/metadata/table_list.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/metadata/table_list.pl -------------------------------------------------------------------------------- /recipes/misc/buddy_like_foods.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/misc/buddy_like_foods.sql -------------------------------------------------------------------------------- /recipes/misc/buddy_pairs.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/misc/buddy_pairs.sql -------------------------------------------------------------------------------- /recipes/misc/envshow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/misc/envshow.py -------------------------------------------------------------------------------- /recipes/misc/query_len.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/misc/query_len.pl -------------------------------------------------------------------------------- /recipes/misc/serial.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/misc/serial.sql -------------------------------------------------------------------------------- /recipes/mysql_shell/CookbookCollection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/mysql_shell/CookbookCollection.js -------------------------------------------------------------------------------- /recipes/mysql_shell/CookbookCollectionModule.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/mysql_shell/CookbookCollectionModule.js -------------------------------------------------------------------------------- /recipes/mysql_shell/cookbook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/mysql_shell/cookbook.py -------------------------------------------------------------------------------- /recipes/mysql_shell/generate_patients_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/mysql_shell/generate_patients_data.py -------------------------------------------------------------------------------- /recipes/progdemo/JavaDemo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/progdemo/JavaDemo.java -------------------------------------------------------------------------------- /recipes/progdemo/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/progdemo/README.txt -------------------------------------------------------------------------------- /recipes/progdemo/godemo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/progdemo/godemo.go -------------------------------------------------------------------------------- /recipes/progdemo/perldemo.pl: -------------------------------------------------------------------------------- 1 | print "I am a Perl program.\n"; 2 | -------------------------------------------------------------------------------- /recipes/progdemo/perldemo2.pl: -------------------------------------------------------------------------------- 1 | #!/usr/bin/perl 2 | print "I am a Perl program.\n"; 3 | -------------------------------------------------------------------------------- /recipes/progdemo/phpdemo.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /recipes/progdemo/pythondemo.py: -------------------------------------------------------------------------------- 1 | print("I am a Python program.") 2 | -------------------------------------------------------------------------------- /recipes/progdemo/pythondemo2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/progdemo/pythondemo2.py -------------------------------------------------------------------------------- /recipes/progdemo/rubydemo.rb: -------------------------------------------------------------------------------- 1 | puts "I am a Ruby program." 2 | -------------------------------------------------------------------------------- /recipes/progdemo/rubydemo2.rb: -------------------------------------------------------------------------------- 1 | #!/usr/bin/ruby 2 | puts "I am a Ruby program." 3 | -------------------------------------------------------------------------------- /recipes/routines/avg_legs.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/routines/avg_legs.sql -------------------------------------------------------------------------------- /recipes/routines/avg_mail_size.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/routines/avg_mail_size.sql -------------------------------------------------------------------------------- /recipes/routines/create_user.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/routines/create_user.sql -------------------------------------------------------------------------------- /recipes/routines/divide.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/routines/divide.sql -------------------------------------------------------------------------------- /recipes/routines/drop_user.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/routines/drop_user.sql -------------------------------------------------------------------------------- /recipes/routines/dynamic-sql.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/routines/dynamic-sql.sql -------------------------------------------------------------------------------- /recipes/routines/enable_failed_login_attempts.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/routines/enable_failed_login_attempts.sql -------------------------------------------------------------------------------- /recipes/routines/exec_stmt.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/routines/exec_stmt.sql -------------------------------------------------------------------------------- /recipes/routines/expire_all_passwords.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/routines/expire_all_passwords.sql -------------------------------------------------------------------------------- /recipes/routines/fix-insecure-accounts.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/routines/fix-insecure-accounts.sql -------------------------------------------------------------------------------- /recipes/routines/is_leap_year.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/routines/is_leap_year.sql -------------------------------------------------------------------------------- /recipes/routines/mail_sender_stats.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/routines/mail_sender_stats.sql -------------------------------------------------------------------------------- /recipes/routines/quote_identifier.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/routines/quote_identifier.sql -------------------------------------------------------------------------------- /recipes/routines/sales_tax_rate.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/routines/sales_tax_rate.sql -------------------------------------------------------------------------------- /recipes/routines/server_version.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/routines/server_version.sql -------------------------------------------------------------------------------- /recipes/routines/show_part_of_day.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/routines/show_part_of_day.sql -------------------------------------------------------------------------------- /recipes/routines/show_version.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/routines/show_version.sql -------------------------------------------------------------------------------- /recipes/routines/time_ampm.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/routines/time_ampm.sql -------------------------------------------------------------------------------- /recipes/routines/us_population.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/routines/us_population.sql -------------------------------------------------------------------------------- /recipes/select/DateSent.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/select/DateSent.java -------------------------------------------------------------------------------- /recipes/select/date_sent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/select/date_sent.php -------------------------------------------------------------------------------- /recipes/select/date_sent.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/select/date_sent.pl -------------------------------------------------------------------------------- /recipes/select/date_sent.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/select/date_sent.rb -------------------------------------------------------------------------------- /recipes/select/limit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/select/limit.php -------------------------------------------------------------------------------- /recipes/select/maxmin.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/select/maxmin.sql -------------------------------------------------------------------------------- /recipes/select/nulltest.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/select/nulltest.pl -------------------------------------------------------------------------------- /recipes/sequences/AddInsect.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/sequences/AddInsect.java -------------------------------------------------------------------------------- /recipes/sequences/BookSales.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/sequences/BookSales.java -------------------------------------------------------------------------------- /recipes/sequences/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/sequences/README.txt -------------------------------------------------------------------------------- /recipes/sequences/SeqDemo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/sequences/SeqDemo.java -------------------------------------------------------------------------------- /recipes/sequences/add_insect.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/sequences/add_insect.php -------------------------------------------------------------------------------- /recipes/sequences/add_insect.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/sequences/add_insect.pl -------------------------------------------------------------------------------- /recipes/sequences/add_insect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/sequences/add_insect.py -------------------------------------------------------------------------------- /recipes/sequences/add_insect.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/sequences/add_insect.rb -------------------------------------------------------------------------------- /recipes/sequences/booksales.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/sequences/booksales.php -------------------------------------------------------------------------------- /recipes/sequences/booksales.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/sequences/booksales.pl -------------------------------------------------------------------------------- /recipes/sequences/booksales.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/sequences/booksales.py -------------------------------------------------------------------------------- /recipes/sequences/booksales.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/sequences/booksales.rb -------------------------------------------------------------------------------- /recipes/sequences/booksales.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/sequences/booksales.sql -------------------------------------------------------------------------------- /recipes/sequences/caseboxunit.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/sequences/caseboxunit.pl -------------------------------------------------------------------------------- /recipes/sequences/caseboxunit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/sequences/caseboxunit.py -------------------------------------------------------------------------------- /recipes/sequences/caseboxunit.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/sequences/caseboxunit.rb -------------------------------------------------------------------------------- /recipes/sequences/custom_sequences.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/sequences/custom_sequences.sql -------------------------------------------------------------------------------- /recipes/sequences/disp_origin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/sequences/disp_origin.py -------------------------------------------------------------------------------- /recipes/sequences/hashtest.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/sequences/hashtest.pl -------------------------------------------------------------------------------- /recipes/sequences/invoice.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/sequences/invoice.pl -------------------------------------------------------------------------------- /recipes/sequences/invoice.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/sequences/invoice.rb -------------------------------------------------------------------------------- /recipes/sequences/multicolseq.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/sequences/multicolseq.sql -------------------------------------------------------------------------------- /recipes/sequences/resequence.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/sequences/resequence.sql -------------------------------------------------------------------------------- /recipes/sequences/reuse-test.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/sequences/reuse-test.sql -------------------------------------------------------------------------------- /recipes/sequences/seq_generator.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/sequences/seq_generator.sql -------------------------------------------------------------------------------- /recipes/sequences/seqdemo.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/sequences/seqdemo.pl -------------------------------------------------------------------------------- /recipes/sequences/seqdemo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/sequences/seqdemo.py -------------------------------------------------------------------------------- /recipes/sequences/seqdemo.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/sequences/seqdemo.rb -------------------------------------------------------------------------------- /recipes/sequences/seqdiag.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/sequences/seqdiag.pl -------------------------------------------------------------------------------- /recipes/sorting/color_sort.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/sorting/color_sort.sql -------------------------------------------------------------------------------- /recipes/sorting/domain_sort.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/sorting/domain_sort.sql -------------------------------------------------------------------------------- /recipes/sorting/housewares_sort.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/sorting/housewares_sort.sql -------------------------------------------------------------------------------- /recipes/sorting/ip_sort.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/sorting/ip_sort.sql -------------------------------------------------------------------------------- /recipes/sorting/mailday.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/sorting/mailday.sql -------------------------------------------------------------------------------- /recipes/sorting/mailsort.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/sorting/mailsort.sql -------------------------------------------------------------------------------- /recipes/sorting/name_sort.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/sorting/name_sort.sql -------------------------------------------------------------------------------- /recipes/sorting/occasion_sort.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/sorting/occasion_sort.sql -------------------------------------------------------------------------------- /recipes/sorting/weekday_sort.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/sorting/weekday_sort.sql -------------------------------------------------------------------------------- /recipes/stats/CalcStandings.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/stats/CalcStandings.java -------------------------------------------------------------------------------- /recipes/stats/RandTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/stats/RandTest.java -------------------------------------------------------------------------------- /recipes/stats/calc_standings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/stats/calc_standings.php -------------------------------------------------------------------------------- /recipes/stats/calc_standings.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/stats/calc_standings.pl -------------------------------------------------------------------------------- /recipes/stats/calc_standings1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/stats/calc_standings1.sql -------------------------------------------------------------------------------- /recipes/stats/calc_standings2.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/stats/calc_standings2.sql -------------------------------------------------------------------------------- /recipes/stats/correlation.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/stats/correlation.pl -------------------------------------------------------------------------------- /recipes/stats/correlation.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/stats/correlation.sql -------------------------------------------------------------------------------- /recipes/stats/cr_die_tbl.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/stats/cr_die_tbl.sql -------------------------------------------------------------------------------- /recipes/stats/cr_marble_tbl.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/stats/cr_marble_tbl.sql -------------------------------------------------------------------------------- /recipes/stats/cr_player_tbl.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/stats/cr_player_tbl.sql -------------------------------------------------------------------------------- /recipes/stats/create_deck.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/stats/create_deck.php -------------------------------------------------------------------------------- /recipes/stats/deck.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/stats/deck.sql -------------------------------------------------------------------------------- /recipes/stats/die_toss.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/stats/die_toss.sql -------------------------------------------------------------------------------- /recipes/stats/median.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/stats/median.pl -------------------------------------------------------------------------------- /recipes/stats/rand_test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/stats/rand_test.php -------------------------------------------------------------------------------- /recipes/stats/rand_test.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/stats/rand_test.pl -------------------------------------------------------------------------------- /recipes/stats/rand_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/stats/rand_test.py -------------------------------------------------------------------------------- /recipes/stats/rand_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/stats/rand_test.rb -------------------------------------------------------------------------------- /recipes/stats/rand_test2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/stats/rand_test2.php -------------------------------------------------------------------------------- /recipes/stats/rand_test2.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/stats/rand_test2.pl -------------------------------------------------------------------------------- /recipes/stats/rand_test2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/stats/rand_test2.py -------------------------------------------------------------------------------- /recipes/stats/rank.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/stats/rank.php -------------------------------------------------------------------------------- /recipes/stats/rank.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/stats/rank.pl -------------------------------------------------------------------------------- /recipes/stats/rank.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/stats/rank.rb -------------------------------------------------------------------------------- /recipes/stats/regression.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/stats/regression.pl -------------------------------------------------------------------------------- /recipes/stats/regression.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/stats/regression.sql -------------------------------------------------------------------------------- /recipes/stats/shuffle_deck.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/stats/shuffle_deck.php -------------------------------------------------------------------------------- /recipes/strings/amazon.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/strings/amazon.sql -------------------------------------------------------------------------------- /recipes/strings/binary-case-convert.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/strings/binary-case-convert.sql -------------------------------------------------------------------------------- /recipes/strings/boolmode.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/strings/boolmode.sql -------------------------------------------------------------------------------- /recipes/strings/case_alter.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/strings/case_alter.sql -------------------------------------------------------------------------------- /recipes/summary/amazon_reviews.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/summary/amazon_reviews.sql -------------------------------------------------------------------------------- /recipes/summary/driver_trips.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/summary/driver_trips.py -------------------------------------------------------------------------------- /recipes/summary/sum_expt.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/summary/sum_expt.sql -------------------------------------------------------------------------------- /recipes/tables/adcount.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/tables/adcount.sql -------------------------------------------------------------------------------- /recipes/tables/al_winner-2001.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/tables/al_winner-2001.txt -------------------------------------------------------------------------------- /recipes/tables/al_winner.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/tables/al_winner.sql -------------------------------------------------------------------------------- /recipes/tables/app_log.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/tables/app_log.sql -------------------------------------------------------------------------------- /recipes/tables/artist.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/tables/artist.sql -------------------------------------------------------------------------------- /recipes/tables/book_authors.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/tables/book_authors.sql -------------------------------------------------------------------------------- /recipes/tables/book_vendor.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/tables/book_vendor.sql -------------------------------------------------------------------------------- /recipes/tables/booksales.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/tables/booksales.sql -------------------------------------------------------------------------------- /recipes/tables/catalog_list.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/tables/catalog_list.sql -------------------------------------------------------------------------------- /recipes/tables/cd.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/tables/cd.sql -------------------------------------------------------------------------------- /recipes/tables/city.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/tables/city.sql -------------------------------------------------------------------------------- /recipes/tables/city.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/tables/city.txt -------------------------------------------------------------------------------- /recipes/tables/color.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/tables/color.sql -------------------------------------------------------------------------------- /recipes/tables/cow.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/tables/cow.sql -------------------------------------------------------------------------------- /recipes/tables/date_val.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/tables/date_val.sql -------------------------------------------------------------------------------- /recipes/tables/datetbl.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/tables/datetbl.sql -------------------------------------------------------------------------------- /recipes/tables/datetime_val.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/tables/datetime_val.sql -------------------------------------------------------------------------------- /recipes/tables/die.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/tables/die.sql -------------------------------------------------------------------------------- /recipes/tables/doremi.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/tables/doremi.sql -------------------------------------------------------------------------------- /recipes/tables/drawing.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/tables/drawing.sql -------------------------------------------------------------------------------- /recipes/tables/driver_log.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/tables/driver_log.sql -------------------------------------------------------------------------------- /recipes/tables/expt.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/tables/expt.sql -------------------------------------------------------------------------------- /recipes/tables/formula1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/tables/formula1.sql -------------------------------------------------------------------------------- /recipes/tables/goods_characteristics.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/tables/goods_characteristics.sql -------------------------------------------------------------------------------- /recipes/tables/goods_shops.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/tables/goods_shops.sql -------------------------------------------------------------------------------- /recipes/tables/groceries.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/tables/groceries.sql -------------------------------------------------------------------------------- /recipes/tables/groceries_order_items.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/tables/groceries_order_items.sql -------------------------------------------------------------------------------- /recipes/tables/hits.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/tables/hits.sql -------------------------------------------------------------------------------- /recipes/tables/hostip.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/tables/hostip.sql -------------------------------------------------------------------------------- /recipes/tables/hostname.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/tables/hostname.sql -------------------------------------------------------------------------------- /recipes/tables/housewares.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/tables/housewares.sql -------------------------------------------------------------------------------- /recipes/tables/httpdlog.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/tables/httpdlog.sql -------------------------------------------------------------------------------- /recipes/tables/httpdlog2.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/tables/httpdlog2.sql -------------------------------------------------------------------------------- /recipes/tables/image.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/tables/image.sql -------------------------------------------------------------------------------- /recipes/tables/ingredient.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/tables/ingredient.sql -------------------------------------------------------------------------------- /recipes/tables/insect.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/tables/insect.sql -------------------------------------------------------------------------------- /recipes/tables/invoice.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/tables/invoice.sql -------------------------------------------------------------------------------- /recipes/tables/item.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/tables/item.sql -------------------------------------------------------------------------------- /recipes/tables/limbs.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/tables/limbs.sql -------------------------------------------------------------------------------- /recipes/tables/mail.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/tables/mail.sql -------------------------------------------------------------------------------- /recipes/tables/marathon.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/tables/marathon.sql -------------------------------------------------------------------------------- /recipes/tables/mark_log.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/tables/mark_log.sql -------------------------------------------------------------------------------- /recipes/tables/metal.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/tables/metal.sql -------------------------------------------------------------------------------- /recipes/tables/money.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/tables/money.sql -------------------------------------------------------------------------------- /recipes/tables/movies-actors.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/tables/movies-actors.sql -------------------------------------------------------------------------------- /recipes/tables/name.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/tables/name.sql -------------------------------------------------------------------------------- /recipes/tables/news.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/tables/news.sql -------------------------------------------------------------------------------- /recipes/tables/newsstaff.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/tables/newsstaff.sql -------------------------------------------------------------------------------- /recipes/tables/numbers.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/tables/numbers.sql -------------------------------------------------------------------------------- /recipes/tables/obs.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/tables/obs.sql -------------------------------------------------------------------------------- /recipes/tables/occasion.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/tables/occasion.sql -------------------------------------------------------------------------------- /recipes/tables/passtbl.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/tables/passtbl.sql -------------------------------------------------------------------------------- /recipes/tables/passwd.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/tables/passwd.sql -------------------------------------------------------------------------------- /recipes/tables/patients.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/tables/patients.sql -------------------------------------------------------------------------------- /recipes/tables/perl_session.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/tables/perl_session.sql -------------------------------------------------------------------------------- /recipes/tables/person.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/tables/person.sql -------------------------------------------------------------------------------- /recipes/tables/php_session.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/tables/php_session.sql -------------------------------------------------------------------------------- /recipes/tables/phrase.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/tables/phrase.sql -------------------------------------------------------------------------------- /recipes/tables/player_stats.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/tables/player_stats.sql -------------------------------------------------------------------------------- /recipes/tables/poi.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/tables/poi.sql -------------------------------------------------------------------------------- /recipes/tables/poll_vote.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/tables/poll_vote.sql -------------------------------------------------------------------------------- /recipes/tables/profile.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/tables/profile.sql -------------------------------------------------------------------------------- /recipes/tables/profile2.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/tables/profile2.sql -------------------------------------------------------------------------------- /recipes/tables/profile_contact.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/tables/profile_contact.sql -------------------------------------------------------------------------------- /recipes/tables/proto.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/tables/proto.sql -------------------------------------------------------------------------------- /recipes/tables/rainfall.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/tables/rainfall.sql -------------------------------------------------------------------------------- /recipes/tables/rainfall2.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/tables/rainfall2.sql -------------------------------------------------------------------------------- /recipes/tables/rand_names.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/tables/rand_names.sql -------------------------------------------------------------------------------- /recipes/tables/ranks.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/tables/ranks.sql -------------------------------------------------------------------------------- /recipes/tables/reviews.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/tables/reviews.sql -------------------------------------------------------------------------------- /recipes/tables/roster.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/tables/roster.sql -------------------------------------------------------------------------------- /recipes/tables/ruby_session.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/tables/ruby_session.sql -------------------------------------------------------------------------------- /recipes/tables/sales.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/tables/sales.sql -------------------------------------------------------------------------------- /recipes/tables/sales_tax_rate.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/tables/sales_tax_rate.sql -------------------------------------------------------------------------------- /recipes/tables/sales_tax_rate.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/tables/sales_tax_rate.txt -------------------------------------------------------------------------------- /recipes/tables/sibling.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/tables/sibling.sql -------------------------------------------------------------------------------- /recipes/tables/standings1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/tables/standings1.sql -------------------------------------------------------------------------------- /recipes/tables/standings2.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/tables/standings2.sql -------------------------------------------------------------------------------- /recipes/tables/states.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/tables/states.sql -------------------------------------------------------------------------------- /recipes/tables/states.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/tables/states.txt -------------------------------------------------------------------------------- /recipes/tables/str_val.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/tables/str_val.sql -------------------------------------------------------------------------------- /recipes/tables/sundays.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/tables/sundays.sql -------------------------------------------------------------------------------- /recipes/tables/testscore.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/tables/testscore.sql -------------------------------------------------------------------------------- /recipes/tables/testscore_withmisses.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/tables/testscore_withmisses.sql -------------------------------------------------------------------------------- /recipes/tables/testscore_withmisses2.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/tables/testscore_withmisses2.sql -------------------------------------------------------------------------------- /recipes/tables/time_val.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/tables/time_val.sql -------------------------------------------------------------------------------- /recipes/tables/tomcat_realm.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/tables/tomcat_realm.sql -------------------------------------------------------------------------------- /recipes/tables/tomcat_session.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/tables/tomcat_session.sql -------------------------------------------------------------------------------- /recipes/tables/top_names.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/tables/top_names.sql -------------------------------------------------------------------------------- /recipes/tables/trip.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/tables/trip.sql -------------------------------------------------------------------------------- /recipes/tables/tsdemo.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/tables/tsdemo.sql -------------------------------------------------------------------------------- /recipes/tables/weather.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/tables/weather.sql -------------------------------------------------------------------------------- /recipes/tables/weekday.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/tables/weekday.sql -------------------------------------------------------------------------------- /recipes/tblmgmt/drop-create-table.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/tblmgmt/drop-create-table.sql -------------------------------------------------------------------------------- /recipes/tblmgmt/uniq_name.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/tblmgmt/uniq_name.php -------------------------------------------------------------------------------- /recipes/tblmgmt/uniq_name.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/tblmgmt/uniq_name.pl -------------------------------------------------------------------------------- /recipes/tblmgmt/uniq_name.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/tblmgmt/uniq_name.py -------------------------------------------------------------------------------- /recipes/tblmgmt/uniq_name.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/tblmgmt/uniq_name.rb -------------------------------------------------------------------------------- /recipes/transactions/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/transactions/README.txt -------------------------------------------------------------------------------- /recipes/transactions/Transaction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/transactions/Transaction.java -------------------------------------------------------------------------------- /recipes/transactions/transaction.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/transactions/transaction.go -------------------------------------------------------------------------------- /recipes/transactions/transaction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/transactions/transaction.php -------------------------------------------------------------------------------- /recipes/transactions/transaction.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/transactions/transaction.pl -------------------------------------------------------------------------------- /recipes/transactions/transaction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/transactions/transaction.py -------------------------------------------------------------------------------- /recipes/transactions/transaction.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/transactions/transaction.rb -------------------------------------------------------------------------------- /recipes/transactions/transaction_context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/transactions/transaction_context.go -------------------------------------------------------------------------------- /recipes/transfer/LookupTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/transfer/LookupTest.java -------------------------------------------------------------------------------- /recipes/transfer/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/transfer/README.txt -------------------------------------------------------------------------------- /recipes/transfer/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/transfer/TODO -------------------------------------------------------------------------------- /recipes/transfer/check_enum_value.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/transfer/check_enum_value.php -------------------------------------------------------------------------------- /recipes/transfer/check_enum_value.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/transfer/check_enum_value.pl -------------------------------------------------------------------------------- /recipes/transfer/check_enum_value.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/transfer/check_enum_value.py -------------------------------------------------------------------------------- /recipes/transfer/check_enum_value.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/transfer/check_enum_value.rb -------------------------------------------------------------------------------- /recipes/transfer/check_set_value.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/transfer/check_set_value.pl -------------------------------------------------------------------------------- /recipes/transfer/check_set_value.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/transfer/check_set_value.py -------------------------------------------------------------------------------- /recipes/transfer/commodities.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/transfer/commodities.csv -------------------------------------------------------------------------------- /recipes/transfer/cvt_date.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/transfer/cvt_date.pl -------------------------------------------------------------------------------- /recipes/transfer/cvt_date.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/transfer/cvt_date.py -------------------------------------------------------------------------------- /recipes/transfer/cvt_file.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/transfer/cvt_file.pl -------------------------------------------------------------------------------- /recipes/transfer/dates-brit.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/transfer/dates-brit.txt -------------------------------------------------------------------------------- /recipes/transfer/dates-iso.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/transfer/dates-iso.txt -------------------------------------------------------------------------------- /recipes/transfer/dates-us.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/transfer/dates-us.txt -------------------------------------------------------------------------------- /recipes/transfer/dates2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/transfer/dates2.txt -------------------------------------------------------------------------------- /recipes/transfer/from_excel.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/transfer/from_excel.pl -------------------------------------------------------------------------------- /recipes/transfer/guess_table.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/transfer/guess_table.pl -------------------------------------------------------------------------------- /recipes/transfer/has_nulls.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/transfer/has_nulls.txt -------------------------------------------------------------------------------- /recipes/transfer/hexdump.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/transfer/hexdump.pl -------------------------------------------------------------------------------- /recipes/transfer/hexdump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/transfer/hexdump.py -------------------------------------------------------------------------------- /recipes/transfer/hexdump.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/transfer/hexdump.rb -------------------------------------------------------------------------------- /recipes/transfer/isoize_data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/transfer/isoize_data.txt -------------------------------------------------------------------------------- /recipes/transfer/isoize_date.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/transfer/isoize_date.pl -------------------------------------------------------------------------------- /recipes/transfer/isoize_date.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/transfer/isoize_date.py -------------------------------------------------------------------------------- /recipes/transfer/load-examples/data-colon-cr.txt: -------------------------------------------------------------------------------- 1 | abc:def ghi:jkl m n:o p "m""n":"o""p" -------------------------------------------------------------------------------- /recipes/transfer/load-examples/data-colon.txt: -------------------------------------------------------------------------------- 1 | abc:def 2 | ghi:jkl 3 | m n:o p 4 | "m""n":"o""p" 5 | -------------------------------------------------------------------------------- /recipes/transfer/load-examples/data-csv-cr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/transfer/load-examples/data-csv-cr.txt -------------------------------------------------------------------------------- /recipes/transfer/load-examples/data-csv-crlf.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/transfer/load-examples/data-csv-crlf.txt -------------------------------------------------------------------------------- /recipes/transfer/load-examples/data-csv.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/transfer/load-examples/data-csv.txt -------------------------------------------------------------------------------- /recipes/transfer/load-examples/data-merge-cr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/transfer/load-examples/data-merge-cr.txt -------------------------------------------------------------------------------- /recipes/transfer/load-examples/data-merge.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/transfer/load-examples/data-merge.txt -------------------------------------------------------------------------------- /recipes/transfer/load-examples/data-tab-crlf.txt: -------------------------------------------------------------------------------- 1 | abc def 2 | ghi jkl 3 | m n o p 4 | "m""n" "o""p" 5 | -------------------------------------------------------------------------------- /recipes/transfer/load-examples/data-tab.txt: -------------------------------------------------------------------------------- 1 | abc def 2 | ghi jkl 3 | m n o p 4 | "m""n" "o""p" 5 | -------------------------------------------------------------------------------- /recipes/transfer/load-examples/import-passwd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/transfer/load-examples/import-passwd.sh -------------------------------------------------------------------------------- /recipes/transfer/load-examples/import-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/transfer/load-examples/import-test.sh -------------------------------------------------------------------------------- /recipes/transfer/load-examples/ld-csv.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/transfer/load-examples/ld-csv.sql -------------------------------------------------------------------------------- /recipes/transfer/load-examples/ld-tab.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/transfer/load-examples/ld-tab.sql -------------------------------------------------------------------------------- /recipes/transfer/load-examples/load-passwd.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/transfer/load-examples/load-passwd.sql -------------------------------------------------------------------------------- /recipes/transfer/load-examples/load-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/transfer/load-examples/load-test.sh -------------------------------------------------------------------------------- /recipes/transfer/load-examples/mysql_export.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/transfer/load-examples/mysql_export.sh -------------------------------------------------------------------------------- /recipes/transfer/load-examples/mytbl.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/transfer/load-examples/mytbl.sql -------------------------------------------------------------------------------- /recipes/transfer/load-examples/mytbl.txt: -------------------------------------------------------------------------------- 1 | abc:def ghi:jkl m n:o p "m""n":"o""p" -------------------------------------------------------------------------------- /recipes/transfer/load-examples/passwd.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/transfer/load-examples/passwd.txt -------------------------------------------------------------------------------- /recipes/transfer/load-examples/select-passwd1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/transfer/load-examples/select-passwd1.sql -------------------------------------------------------------------------------- /recipes/transfer/load-examples/select-passwd2.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/transfer/load-examples/select-passwd2.sql -------------------------------------------------------------------------------- /recipes/transfer/load_amazon_reviews.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/transfer/load_amazon_reviews.py -------------------------------------------------------------------------------- /recipes/transfer/load_diag.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/transfer/load_diag.pl -------------------------------------------------------------------------------- /recipes/transfer/lookup_test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/transfer/lookup_test.php -------------------------------------------------------------------------------- /recipes/transfer/lookup_test.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/transfer/lookup_test.pl -------------------------------------------------------------------------------- /recipes/transfer/lookup_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/transfer/lookup_test.py -------------------------------------------------------------------------------- /recipes/transfer/lookup_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/transfer/lookup_test.rb -------------------------------------------------------------------------------- /recipes/transfer/lookup_time.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/transfer/lookup_time.pl -------------------------------------------------------------------------------- /recipes/transfer/lookup_time.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/transfer/lookup_time.py -------------------------------------------------------------------------------- /recipes/transfer/loop.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/transfer/loop.pl -------------------------------------------------------------------------------- /recipes/transfer/loop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/transfer/loop.py -------------------------------------------------------------------------------- /recipes/transfer/missing_day_to_iso.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/transfer/missing_day_to_iso.pl -------------------------------------------------------------------------------- /recipes/transfer/mmddyyyy_to_iso.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/transfer/mmddyyyy_to_iso.sql -------------------------------------------------------------------------------- /recipes/transfer/mmddyyyy_to_iso.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/transfer/mmddyyyy_to_iso.txt -------------------------------------------------------------------------------- /recipes/transfer/monddyyyy_to_iso.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/transfer/monddyyyy_to_iso.pl -------------------------------------------------------------------------------- /recipes/transfer/monddyyyy_to_iso.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/transfer/monddyyyy_to_iso.py -------------------------------------------------------------------------------- /recipes/transfer/monddyyyy_to_iso2.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/transfer/monddyyyy_to_iso2.pl -------------------------------------------------------------------------------- /recipes/transfer/mysql_to_excel.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/transfer/mysql_to_excel.pl -------------------------------------------------------------------------------- /recipes/transfer/mysql_to_text.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/transfer/mysql_to_text.pl -------------------------------------------------------------------------------- /recipes/transfer/mysql_to_xml.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/transfer/mysql_to_xml.pl -------------------------------------------------------------------------------- /recipes/transfer/newdata.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/transfer/newdata.txt -------------------------------------------------------------------------------- /recipes/transfer/parse_date.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/transfer/parse_date.pl -------------------------------------------------------------------------------- /recipes/transfer/pat_test.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/transfer/pat_test.dat -------------------------------------------------------------------------------- /recipes/transfer/patterns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/transfer/patterns -------------------------------------------------------------------------------- /recipes/transfer/see.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/transfer/see.pl -------------------------------------------------------------------------------- /recipes/transfer/see.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/transfer/see.py -------------------------------------------------------------------------------- /recipes/transfer/see.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/transfer/see.rb -------------------------------------------------------------------------------- /recipes/transfer/somedata.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/transfer/somedata.csv -------------------------------------------------------------------------------- /recipes/transfer/somedata.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/transfer/somedata.txt -------------------------------------------------------------------------------- /recipes/transfer/statehood.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/transfer/statehood.txt -------------------------------------------------------------------------------- /recipes/transfer/test_csv.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/transfer/test_csv.pl -------------------------------------------------------------------------------- /recipes/transfer/test_date.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/transfer/test_date.php -------------------------------------------------------------------------------- /recipes/transfer/test_date_pat.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/transfer/test_date_pat.pl -------------------------------------------------------------------------------- /recipes/transfer/test_integer.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/transfer/test_integer.pl -------------------------------------------------------------------------------- /recipes/transfer/test_integer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/transfer/test_integer.py -------------------------------------------------------------------------------- /recipes/transfer/test_pat.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/transfer/test_pat.pl -------------------------------------------------------------------------------- /recipes/transfer/test_pat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/transfer/test_pat.py -------------------------------------------------------------------------------- /recipes/transfer/test_time_pat.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/transfer/test_time_pat.pl -------------------------------------------------------------------------------- /recipes/transfer/test_web_pat.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/transfer/test_web_pat.pl -------------------------------------------------------------------------------- /recipes/transfer/testdat-colon.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/transfer/testdat-colon.tab -------------------------------------------------------------------------------- /recipes/transfer/testdat.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/transfer/testdat.csv -------------------------------------------------------------------------------- /recipes/transfer/testdat.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/transfer/testdat.tab -------------------------------------------------------------------------------- /recipes/transfer/to_excel.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/transfer/to_excel.pl -------------------------------------------------------------------------------- /recipes/transfer/validate_htwt.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/transfer/validate_htwt.pl -------------------------------------------------------------------------------- /recipes/transfer/validate_htwt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/transfer/validate_htwt.py -------------------------------------------------------------------------------- /recipes/transfer/validate_misc.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/transfer/validate_misc.pl -------------------------------------------------------------------------------- /recipes/transfer/validate_misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/transfer/validate_misc.py -------------------------------------------------------------------------------- /recipes/transfer/xml_to_mysql.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/transfer/xml_to_mysql.pl -------------------------------------------------------------------------------- /recipes/transfer/yank_col.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/transfer/yank_col.pl -------------------------------------------------------------------------------- /recipes/transfer/yy_to_yyyy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/transfer/yy_to_yyyy.py -------------------------------------------------------------------------------- /recipes/triggers/contact_trigger.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/triggers/contact_trigger.sql -------------------------------------------------------------------------------- /recipes/triggers/cust_invoice.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/triggers/cust_invoice.sql -------------------------------------------------------------------------------- /recipes/triggers/functional-index.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/triggers/functional-index.sql -------------------------------------------------------------------------------- /recipes/triggers/logging_trigger.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/triggers/logging_trigger.sql -------------------------------------------------------------------------------- /recipes/triggers/ts_emulate.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svetasmirnova/mysqlcookbook/HEAD/recipes/triggers/ts_emulate.sql --------------------------------------------------------------------------------