Posts

Showing posts from March, 2024

My Sql Query ..

 1.  select product_id from products where low_fats = 'Y' && recyclable = 'Y' ; 2. select name from customer where referee_id != 2 || referee_id is null ; 3. select name, population , area from world where area > 3000000 or population > 25000000 ; 4. select distinct author_id as id from Views where author_id = viewer_id order by id; 5. select tweet_id from tweets where char_length (content) > 15 ; 6. select unique_id, name from Employees left join EmployeeUNI on Employees.id = EmployeeUNI.id; 7. select customer_id , count (visits.visit_id) as count_no_trans from visits left join transactions on visits.visit_id = transactions.visit_id where transaction_id is null group by customer_id; 8. SELECT w1.id FROM Weather w1, Weather w2 WHERE DATEDIFF(w1.recordDate, w2.recordDate) = 1 AND w1.temperature > w2.temperature;

Laravel 11 ::: new changes notes for laravel developers .

  Release Notes Versioning Scheme Support Policy Laravel 11 Versioning Scheme Laravel and its other first-party packages follow  Semantic Versioning . Major framework releases are released every year (~Q1), while minor and patch releases may be released as often as every week. Minor and patch releases should  never  contain breaking changes. When referencing the Laravel framework or its components from your application or package, you should always use a version constraint such as  ^11.0 , since major releases of Laravel do include breaking changes. However, we strive to always ensure you may update to a new major release in one day or less. Named Arguments Named arguments  are not covered by Laravel's backwards compatibility guidelines. We may choose to rename function arguments when necessary in order to improve the Laravel codebase. Therefore, using named arguments when calling Laravel methods should be done cautiously and with the understanding that the...