I just want to drop the table “independently” if it exists, and then recreate the “all” table in one query, if possible.
DROP TABLE IF EXISTS `whatever` ELSE CREATE TABLE `whatever`
Any idea?
CREATE TABLE `whatever` IF NOT EXISTS ELSE TRUNCATE `whatever`
Use TRUNCATE to clear the table and reset power, rather than delete the table and recreate it.
Source: https://habr.com/ru/post/1385176/More articles:Automatically change strong named build version in resx? - c #Getting wpf gridid - wpfIs it possible to scroll and paste as a title when it reaches the top of the screen in Android? - androidprevent wpf listview header double click autosizes column - listviewA function call to a function from another PHP class - functionCan I use the clojure 'for' macro to modify a string? - clojureHow to convert a C # .NET application to support multiple languages? - c #https://translate.googleusercontent.com/translate_c?depth=1&rurl=translate.google.com&sl=ru&sp=nmt4&tl=en&u=https://fooobar.com/questions/1385179/load-array-from-inputs-to-php-with-jquery-load&usg=ALkJrhjtJaeTNk5OwsrTvFnuADs-gZFkWgCan I use multiple languages in .NET resource files? - .netPython: PyPy: SciPy / Chi-square distribution? - performanceAll Articles