🧚 Ascolta! Beekeeper Studio è una GUI per database veloce, moderna e open source
Scarica
March 15, 2023
Di
Beekeeper Studio Staff
You want to import your sales orders from a comma delimited file into a SQL Server or MSDE table called orders. The file looks like this:
345,John Doe, 400
346,Mark Smith,450
347,Robert,400
Run the following SQL command in Beekeeper Studio, SQL Server Management Studio, or any SQL client. Replace lower case text with your own:
BULK INSERT [orders]
FROM 'c:orders.csv'
WITH (FIELDTERMINATOR = ',')
Result (order table):
| OrderID | Name | Price |
|---|---|---|
| 345 | John Doe | 400 |
| 346 | Mark Smith | 450 |
| 347 | Robert | 400 |
Make sure the field terminator (‘,’) in this example is not part of any actual value. The field Name for instance cannot be ‘Doe, John’ since the ‘,’ would be considered as a field terminator.
The table has to be similar in format to the file (same number of fields and same data type.)
Beekeeper Studio È Una GUI per Database Gratuita e Open Source
Il miglior strumento per query SQL ed editor che abbia mai usato. Fornisce tutto ciò di cui ho bisogno per gestire il mio database. - ⭐⭐⭐⭐⭐ Mit
Beekeeper Studio è veloce, intuitivo e facile da usare. Beekeeper supporta molti database e funziona benissimo su Windows, Mac e Linux.
Cosa Dicono Gli Utenti Di Beekeeper Studio
★★★★★
"Beekeeper Studio ha completamente sostituito il mio vecchio workflow con SQL. È veloce, intuitivo e rende di nuovo piacevole lavorare con i database."
— Alex K., Sviluppatore Database
★★★★★
"Ho provato molte GUI per database, ma Beekeeper trova il perfetto equilibrio tra funzionalità e semplicità. Funziona e basta."
— Sarah M., Ingegnere Full Stack