전체 글 161

스파르타 AI-8기 TIL(9/23)

Starting SQL basic information1. creating a databaseCREATE DATABASE (name of database);2. creating tablesCREATE TABLE name of the table (     column1 data type    column2 data type    ... );Ex.CREATE TABLE students (     id INT, -> id: A column that stores integer data (`INT`).    name VARCHAR(50), -> A column that can store a string of up to 50 characters (`VARCHAR(50)`).    age INT -> A column..

카테고리 없음 2024.09.23

스파르타 AI-8기 TIL(9/21)

starting with formEx.   Name:         Email:         Submit -> Send the user's input data to the serveraction = ->Specifies the URL to which the data will be sent (/submit is the server's endpoint to process the data).method method: Specifies the HTTP transfer method. GET and POST are mainly used.GET: Sends data as a query string in the URL.POST: Sends data as the body of the HTTP request. Ex. ..

카테고리 없음 2024.09.21