skip to Main Content

Mysql group by MIN(price)

I have a table filled with pre-calculated prices for rental objects. This is a simple version of it: CREATE TABLE `pricecache` ( `oid` int(11) NOT NULL DEFAULT '0', `start` date NOT NULL, `end` date NOT NULL, `duration` tinyint(3) UNSIGNED NOT…

VIEW QUESTION

AJAX – insert data in mysql

The code below displays a message after typing a value into the field Poprawnie zapisano: - but without this value Also does not write anything to the database. Did I make a mistake somewhere? HTML file <head> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script> </head>…

VIEW QUESTION
Back To Top
Search