HTTP Methods Cheatsheet - Online GET POST PUT DELETE Guide
Quick reference of HTTP methods with their semantics, idempotency, and example REST usage. Static, fast.
UD5 Toolkit
Generate clean, production-ready SELECT, INSERT, UPDATE, and DELETE SQL statements instantly. Free online SQL query builder for developers.
* for all columns, or comma-separated column names.
INSERT (Create), SELECT (Read), UPDATE (Update), and DELETE (Delete). Together they form the backbone of database interaction in applications.
DELETE removes rows one at a time and can include a WHERE clause to target specific rows. It logs each deletion, fires triggers, and can be rolled back. TRUNCATE removes all rows instantly by deallocating data pages — it's faster but cannot target specific rows, doesn't fire row-level triggers, and may not be rollback-able in all database systems.
SELECT * retrieves all columns from the specified table. While convenient for quick queries, it's generally discouraged in production code because it can return unnecessary data, break if table schema changes, and reduce query performance. Best practice is to explicitly list only the columns you need.
INSERT INTO table (col1, col2) VALUES (val1, val2), (val3, val4), (val5, val6); This is much more efficient than running multiple single-row INSERT statements. Use this tool to generate the base structure, then duplicate the VALUES clause for additional rows.
LIMIT without ORDER BY returns an unpredictable subset of rows because SQL tables have no inherent order. Always pair LIMIT with ORDER BY to get consistent, meaningful results — for example, the 10 most recent orders or top 5 highest scores.
Quick reference of HTTP methods with their semantics, idempotency, and example REST usage. Static, fast.
Generate strong random strings for API tokens, session secrets, or encryption keys. Uses crypto.getRandomValues().
Add some trendy skills to your resume. Generate a list of hard and soft skills relevant for tech and business jobs.
Create a random magical item with a name, effect, and lore for your RPG session. Perfect for dungeon masters. No API.
Easily compute posterior probabilities given prior, likelihood, and marginal likelihood. Visual diagram. All local.
Create a Blob from text or a file and generate a temporary URL for it. Understand the Blob API. Dev demo.
Create and format Markdown tables by adjusting rows and columns. Align text, copy the raw Markdown. Perfect for README files.
Combine two random concepts to spark the next billion‑dollar startup idea. Silly or serious, it's brainstorming fun.
Generate a humorous, realistic‑looking git commit message. Perfect for testing or filling mock repos.
Generate a DKIM DNS record from a public key and selector. Check syntax. Improve your domain’s email deliverability.
Generate truly random numbers within a specified range. Useful for contests, game decisions, and sampling. Runs locally, no hidden algorithms.
Search for common ingredient substitutions (e.g., buttermilk, egg, cornstarch). Quick reference for when you're missing something. Local data.
Generate the doGet() and doPost() boilerplate for a Google Apps Script web app. Ready to paste into the editor.
Search and copy HTML entities for arrows, math, currency, and symbols. See the glyph and code. Fast reference.
Automatically remove white background from an image and make it transparent. Adjust tolerance. Save as PNG.
Automatically remove the background from any photo using a small on‑device AI model (WASM). No upload. Works offline.
Select text and see the Selection object properties. Create ranges programmatically. Understand how rich‑text editors work.
Drag words to the correct position in a sentence using in, on, at. Visual feedback.
Select a color in an image and change it to another hue. Canvas‑based, local processing.
Generate a random Sudoku puzzle with a unique solution. Choose difficulty and type numbers on the board. Timer and mistake counter.
Preview different touch feedback patterns (scale, color, ripple) for mobile buttons. Copy the CSS and HTML. Improve mobile UX.
Virtual paper fortune teller. Pick a color, count, and reveal a random fortune. Nostalgic fun.
Drag and drop pieces to set up a chess position. Generate FEN string and copy to share. Analyze openings. Local only.
Create a looping animated gradient background with multiple color stops. Copy the complete CSS keyframes. Eye‑catching.
Create CSS animations and transitions without coding. Define keyframes, easing, and duration. Copy the @keyframes and animation code instantly.
Choose Babel presets (env, React, TypeScript) and plugins. Get a clean babel.config.json to transpile your code. Local tool.
Choose base metal thickness and welding position to get the right rod diameter and amperage range. Beginner welder's quick reference.
Trim a video clip and convert it into an animated GIF. Adjust frame rate and size. Processing stays on your computer for privacy.
Rotate the hue of any image globally. Turn a red car blue instantly. Download the result. Works entirely in the browser.
Select a Node.js version from the LTS list and instantly download a .nvmrc file. Lock your project’s runtime.